* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

.page {
    width: 100%;
    position: relative;
}

/* Hero Section */
/* .hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 50%;
    padding: 20px;
}
.hero-content h1{
    font-size: 4rem;
    padding-bottom: 20px;
} */

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #ffffff;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

}

.hero-content {
    position: relative;
    z-index: 20;
    width: 40vw;
    /* text-align: center; */
    /* color: #0056b3; */
}

.hero-content h1 {
    font-size: 4rem;
    padding-bottom: 20px;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Base button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    min-width: 180px;
}

.btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Primary button - filled style */
.btn-primary {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
    background: linear-gradient(135deg, #003d7f, #0069d9);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Outline button with animation */
.btn-outline {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 86, 179, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: #003d7f;
    border-color: #003d7f;
}

.btn-outline:hover:before {
    height: 100%;
}

.btn-outline:active {
    transform: translateY(1px);
}

.btn-outline span {
    margin-right: 8px;
}

.btn-outline i {
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}

.btn i {
    margin-right: 12px; /* Increased from 10px to 12px */
    font-size: 18px;
}

/* Or for more specific targeting just the primary button */
.btn-primary svg {
    margin-right: 12px;
}



    /* Waves */
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-size: 1000px 100px;
        }
        
        .wave1 {
            animation: wave 30s linear infinite;
            z-index: 1;
            opacity: 1;
            animation-delay: 0s;
            bottom: 0;
            background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1000 100' xmlns='http://www.w3.org/2000/svg'><path d='M0 50 Q 250 0 500 50 T 1000 50 L 1000 100 L 0 100 Z' fill='rgba(255, 255, 255, 0.7)'/></svg>");
        }
        
        .wave2 {
            animation: wave 15s linear infinite;
            z-index: 0;
            opacity: 0.5;
            animation-delay: -5s;
            bottom: 10px;
            background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1000 100' xmlns='http://www.w3.org/2000/svg'><path d='M0 50 Q 250 0 500 50 T 1000 50 L 1000 100 L 0 100 Z' fill='rgba(255, 255, 255, 0.3)'/></svg>");
        }
        
        .wave3 {
            animation: wave 30s linear infinite;
            z-index: 1;
            opacity: 0.2;
            animation-delay: -2s;
            bottom: 15px;
            background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1000 100' xmlns='http://www.w3.org/2000/svg'><path d='M0 50 Q 250 0 500 50 T 1000 50 L 1000 100 L 0 100 Z' fill='rgba(255, 255, 255, 0.5)'/></svg>");
        }
        
        .wave4 {
            animation: wave 5s linear infinite;
            z-index: 0;
            opacity: 0.7;
            animation-delay: -5s;
            bottom: 20px;
            background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1000 100' xmlns='http://www.w3.org/2000/svg'><path d='M0 50 Q 250 0 500 50 T 1000 50 L 1000 100 L 0 100 Z' fill='rgba(255, 255, 255, 0.2)'/></svg>");
        }
        
        @keyframes wave {
            0% {background-position-x: 0;}
            100% {background-position-x: 1000px;}
        }
        
@keyframes animate {
    0% { background-position-x: 0; }
    100% { background-position-x: 100vw; }
}

@keyframes animate2 {
    0% { background-position-x: 0; }
    100% { background-position-x: -100vw; }
}
/* Image that moves and scales */
.image-container {
    width: 550px;
    height: 400px;
    position: absolute;
    right: 100px;
    top: 40vh;
    transform: translateY(-50%);
    z-index: 9999;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .image-container {
        width: 350px;
        height: 200px;
        position: absolute;
        right: 50px;
        top: 40vh;
        transform: translateY(-50%);
        z-index: 9999;
    }
}
.second-section {
    width: 100%;
    height: 800px;
    padding: 50px 20px;
    background-color: white;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 80%;
}

.text-content {
    text-align: left;
    padding-right: 50px;
    max-width: 40%;
}

.text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0056b3;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.learn-more {
    display: inline-block;
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #003d7f;
    border-color: #003d7f;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .second-section {
        padding: 60px 20px;
        height: auto;
    }
    
    .content-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .text-content {
        text-align: center;
        padding-right: 0;
        max-width: 90%;
    }
}

/* Base hero section styles */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 40vw;
}

.hero-content h1 {
    font-size: 4rem;
    padding-bottom: 20px;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Button styles with improved spacing */
.btn i {
    margin-right: 12px;
    font-size: 18px;
}
/* Base styles for the image container (for large screens) */
.image-container {
    width: 550px;
    height: 400px;
    position: absolute;
    right: 100px;
    top: 40vh;
    transform: translateY(-50%);
    z-index: 9999;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Responsive adjustments for tablets */
@media screen and (max-width: 1200px) {
    .hero-content {
        width: 50vw;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .image-container {
        width: 450px;
        height: 320px;
        right: 60px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        width: 60vw;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .image-container {
        width: 400px;
        height: 280px;
        right: 40px;
    }
}
/* Tablet adjustments */
@media screen and (max-width: 1200px) {
    .image-container {
        width: 450px;
        height: 320px;
        right: 60px;
    }
}

@media screen and (max-width: 992px) {
    .image-container {
        width: 400px;
        height: 280px;
        right: 40px;
    }
}
/* Responsive adjustments for mobile */
@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 70vh;
        flex-direction: column;
        justify-content: center;
        padding: 80px 30px 120px;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        padding-bottom: 15px;
    }
    
    .hero-content p {
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    /* Image container positioning fixed for mobile */
    .image-container {
        position: relative !important; /* Override GSAP positioning */
        width: 90% !important;
        height: auto !important;
        aspect-ratio: 4/3;
        right: auto !important;
        left: 50% !important;
        top: auto !important;
        transform: translateX(-50%) !important; /* Center horizontally */
        margin-top: 40px;
        margin-bottom: 30px;
    }
    /* Adjust wave position for mobile */
    .wave {
        height: 60px;
        background-size: 600px 60px;
    }
    
    /* Ensure buttons stack properly */
    .hero-buttons {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 70px 20px 100px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .image-container {
        width: 95% !important;
    }
}

/* Modern Header & Navigation - RESPONSIVE VERSION */
header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    z-index: 1000;
    position: relative;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #0056b3;
    z-index: 1001;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #444;
    cursor: pointer;
    z-index: 1001;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease-in-out;
    position: relative;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #0056b3;
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #444;
    padding: 8px 12px;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    min-width: 120px;
    top: 40px;
    z-index: 1001;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    pointer-events: none;
}
.language-dropdown .dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    position: absolute;
    z-index: 999;
  }
  
  .language-dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  

.language-dropdown:hover .dropdown-content,
.language-dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    text-decoration: none;
    color: #444;
    transition: background 0.3s ease-in-out;
}

.dropdown-content a:hover {
    background: #f4f4f4;
    color: #0056b3;
}

.auth-btn {
    background: #0056b3;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease-in-out;
    white-space: nowrap;
    text-decoration: none;
}

.auth-btn i {
    font-size: 14px;
}

.auth-btn:hover {
    background: #003f7f;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    header {
        padding: 15px 4%;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .auth-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 70px;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 25px;
        width: 100%;
    }
    
    .right-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 250px;
        background: #f9f9f9;
        border-top: 1px solid #eee;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    
    nav.active + .right-nav {
        transform: translateX(0);
    }
    
    .language-dropdown, .auth-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-content {
        top: auto;
        bottom: 100%;
        left: 0;
        right: auto;
        margin-bottom: 5px;
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .overlay.active {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .auth-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}


.page {
    width: 100%;
    position: relative;
    /* padding-top: 80px;  */
    z-index: 1;
}

.page {
    width: 100%;
    position: relative;
    /* padding-top: 80px;  */
}
/* Carousel Section Styles */
.carousel-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #0056b3;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -15px;
}

.carousel-item {
    min-width: calc(33.333% - 30px);
    padding: 0 15px;
    transition: opacity 0.3s ease;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.15);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0056b3, #2196f3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: #0056b3;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    display: inline-block;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
}

.card-link:after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
}

.card-link:hover:after {
    right: -5px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #0056b3;
    color: white;
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #0056b3;
    transform: scale(1.3);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .carousel-section {
        padding: 70px 0;
    }
    
    .carousel-container {
        max-width: 700px;
    }
    
    /* Don't set min-width in media queries - let JS handle this */
    /* .carousel-item {
        min-width: calc(50% - 30px);
    } */
}

@media screen and (max-width: 768px) {
    .carousel-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Don't set min-width in media queries - let JS handle this */
    /* .carousel-item {
        min-width: calc(100% - 30px);
    } */
    
    .carousel-container {
        padding: 0 25px;
        max-width: 500px;
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}




/* Treatment Section Styles */
.treatment-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #0056b3;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Card styling */
.treatment-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.15);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-height: 320px;
}

.treatment-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0056b3, #2196f3);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: #0056b3;
}

.treatment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.treatment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    display: inline-block;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
}

.card-link:after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
}

.card-link:hover:after {
    right: -5px;
}

/* Owl Carousel custom styling */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: white !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.owl-nav button:hover {
    background: #0056b3 !important;
    color: white !important;
}

.owl-nav button span {
    font-size: 24px;
    line-height: 0;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-dots {
    margin-top: 30px !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .treatment-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}






/* Traditional Footer Styles with Map */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 14px;
    line-height: 1.6;
}

.footer-top {
    padding: 50px 0;
    border-bottom: 1px solid #34495e;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    width: calc(33.33% - 30px);
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3498db;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    background: #34495e;
    color: #ecf0f1;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 20px;
}

.footer-links li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 5px;
}

.map-container {
    width: 100%;
    border: 4px solid #34495e;
    margin-bottom: 15px;
}

.map-caption {
    text-align: center;
    color: #bdc3c7;
    font-style: italic;
}

.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li {
    margin-left: 15px;
    position: relative;
}

.footer-bottom-links li:after {
    content: "|";
    position: absolute;
    right: -10px;
    color: #3498db;
}

.footer-bottom-links li:last-child:after {
    display: none;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .footer-column {
        width: calc(50% - 20px);
    }
    
    .map-column {
        width: 100%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer-column {
        width: 100%;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
    
    .footer-bottom-links li:after {
        right: -12px;
    }
}