/* 
 * Aare Jungfrau AG - Main Stylesheet
 * Modern, app-like design with milky cards
 */

:root {
    /* Hauptfarben basierend auf dem Logo */
    --primary-color: #e63e60;
    --primary-color-light: #f27a93;
    --primary-color-dark: #b01e3c;
    --secondary-color: #333333;
    
    /* Hintergrundfarben */
    --light-bg: #f8f7f4; /* Cremefarbe als Hintergrund */
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-bg-hover: rgba(255, 255, 255, 0.95);
    
    /* Gradient für Texte und Effekte */
    --logo-gradient-start: #e63e60;
    --logo-gradient-end: #f27a93;
    
    /* Text-Farben */
    --text-color: #333333;
    --text-color-muted: #666666;
    --text-color-white: #ffffff;
    
    /* Abstände */
    --section-padding: 100px 0;
    --card-padding: 25px;
    
    /* Abrundungen */
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    
    /* Schatten */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --button-shadow: 0 5px 15px rgba(230, 62, 96, 0.3);
}

/* Grundlegende Stile */
html, body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color-light);
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-light));
    border: none;
    box-shadow: var(--button-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 62, 96, 0.4);
    background: linear-gradient(45deg, var(--primary-color-dark), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
    max-width: 250px;
    display: inline-block;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Schweizer Fahne als i-Punkt */
.i-with-flag {
    position: relative;
    display: inline-block;
}

/* Entfernen des ursprünglichen i-Punkts und Ersetzen durch Schweizer Fahne */
.i-with-flag::after {
    content: '';
    position: absolute;
    top: 4px; /* Noch weiter nach unten positionieren */
    left: 50%;
    width: 24px; /* Originalgröße der Flagge */
    height: 24px;
    background: #D52B1E; /* Schweizer Rot */
    border-radius: 2px;
    transform-origin: bottom center;
    transform: translateX(-50%);
    animation: waveFlag 3s ease-in-out infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Schweizer Kreuz */
.i-with-flag::before {
    content: '';
    position: absolute;
    top: 10px; /* Position innerhalb der Flagge anpassen */
    left: 50%;
    width: 12px; /* Originalgröße des Kreuzes */
    height: 12px;
    background: white;
    transform: translateX(-50%);
    z-index: 11;
    animation: waveFlag 3s ease-in-out infinite;
    clip-path: polygon(
        0% 33%, 33% 33%, 33% 0%, 67% 0%, 
        67% 33%, 100% 33%, 100% 67%, 67% 67%, 
        67% 100%, 33% 100%, 33% 67%, 0% 67%
    );
}

@keyframes waveFlag {
    0% {
        transform: translateX(-50%) rotate(-5deg);
    }
    50% {
        transform: translateX(-50%) rotate(10deg);
    }
    100% {
        transform: translateX(-50%) rotate(-5deg);
    }
}

/* Sektion Header */
.section-header {
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-header .text-white {
    color: var(--secondary-color);
}

/* Navbar - Modern & Transparent */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: none !important;
    border-radius: 0 0 20px 20px !important;
}

.navbar-brand img.logo {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 5px;
    border-radius: 12px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(230, 62, 96, 0.08);
}

/* Moderner Hover-Effekt */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
    border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 25px;
    opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Menu - Apple Style */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px) scale(0.98);
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: 5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    border-radius: 16px;
    padding: 0.8rem;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.6);
}

.dropdown-item {
    color: var(--secondary-color);
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    font-weight: 500;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(230, 62, 96, 0.08);
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Mobile Anpassungen */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        color: white;
    }
    
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--light-bg);
    width: 100%;
    max-width: 100%;
    padding-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    color: rgba(250, 0, 108, 0.2);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 50%;
    left: 20%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
    top: 30%;
    right: 20%;
    font-size: 2rem;
    animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
    top: 70%;
    right: 10%;
    font-size: 3.5rem;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-content {
    position: relative;
    padding: 2rem;
    z-index: 2;
    margin-bottom: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content .btn {
    display: inline-block;
    width: auto;
}

.hero-text {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Dezenter Hintergrund für den Hero-Text */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    overflow: hidden;
}

/* Search Container */
.search-container {
    position: relative;
    z-index: 10;
}

.search-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow), 0 0 30px rgba(230, 62, 96, 0.3); /* Leuchtender Schatten in der Hauptfarbe */
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.search-card h3 {
    margin-bottom: 20px;
    text-align: center; /* Mittige Ausrichtung */
    color: var(--text-color);
    font-size: 1.5rem;
}

/* Apartments Section */
.apartments-section {
    padding: var(--section-padding);
    position: relative;
}

.apartment-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.apartment-card:hover {
    transform: translateY(-10px);
    background: var(--card-bg-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.apartment-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.05);
}

.apartment-content {
    padding: var(--card-padding);
}

.apartment-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.apartment-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.apartment-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-color-muted);
}

.apartment-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Region Section */
.region-section {
    padding: var(--section-padding);
    position: relative;
    background: rgba(0, 0, 0, 0.03);
}

.region-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.region-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
}

.region-image {
    height: 200px;
    overflow: hidden;
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.region-card:hover .region-image img {
    transform: scale(1.05);
}

.region-content {
    padding: var(--card-padding);
}

.region-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.contact-info {
    padding: 20px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    padding: 12px 15px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.05);
    padding: 70px 0 20px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer-logo {
    height: 60px;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color-muted);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-bottom .footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom .footer-links a {
    margin: 0 10px;
    white-space: nowrap;
}

.separator {
    color: var(--text-color-muted);
}

.copyright {
    color: var(--text-color-muted);
    font-size: 0.9rem;
    text-align: center;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 1.5;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: var(--border-radius-md);
        padding: 20px;
        margin-top: 15px;
    }
    
    .nav-item.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
    }
    
    .dropdown-item:hover {
        transform: none;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow-wrap: break-word;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero {
        padding-top: 60px;
        text-align: center;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto 1.5rem;
        font-size: 1.2rem;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .search-container {
        margin-top: 30px;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    /* Anpassung für die Schweizer Flagge im i-Punkt */
    .i-with-flag::after {
        width: 18px;
        height: 18px;
        top: 2px;
    }
    
    .i-with-flag::before {
        width: 9px;
        height: 9px;
        top: 6px;
    }
}

/* Extra kleine Geräte (Smartphones) */
@media (max-width: 480px) {
    html, body {
        width: 100%;
        position: relative;
    }
    
    /* Footer Optimierungen für Smartphones - Komplett neu */
    .footer {
        padding: 0;
        margin: 0;
        background-color: #f5f5f5;
    }
    
    .footer .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .footer .row {
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .footer .col-lg-6,
    .footer .col-lg-3,
    .footer .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 15px;
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .footer-logo {
        height: 35px;
        margin: 0 auto 10px;
    }
    
    .footer h5 {
        margin: 5px 0;
        font-size: 14px;
        font-weight: 600;
    }
    
    .footer-links {
        padding: 0;
        margin: 5px 0;
        list-style: none;
    }
    
    .footer-links li {
        margin: 5px 0;
    }
    
    .footer-links a {
        font-size: 13px;
        color: #555;
    }
    
    .social-links {
        margin: 10px 0;
        text-align: center;
    }
    
    .social-links a {
        margin: 0 10px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 10px 15px;
        margin: 0;
        background-color: #f0f0f0;
        text-align: center;
    }
    
    .footer-bottom .footer-links {
        margin: 0 0 5px;
        padding: 0;
        text-align: center;
    }
    
    .footer-bottom .footer-links a {
        display: inline-block;
        margin: 0 10px;
        font-size: 12px;
    }
    
    .copyright {
        margin: 0;
        padding: 0;
        font-size: 11px;
        color: #777;
    }
    
    .section-header h1 {
        font-size: 2.2rem;
        padding: 0 5px;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.1;
        text-align: center;
        margin: 0 auto 15px;
    }
    
    .text-gradient {
        display: block;
        margin-bottom: 5px;
    }
    
    .text-white {
        display: block;
    }
    
    .hero-content {
        padding: 0.5rem;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-text {
        font-size: 1.1rem;
        padding: 0 5px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
        /* Stelle sicher, dass Container richtig skalieren und zentriert sind */
    .container, .container-fluid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }
    
    .section-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Stelle sicher, dass alle Bilder nicht über den Container hinausragen */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Anpassung für die Schweizer Flagge im i-Punkt */
    .i-with-flag::after {
        width: 16px;
        height: 16px;
        top: -5px;
    }
    
    .i-with-flag::before {
        width: 8px;
        height: 8px;
        top: -1px;
    }
}
