/* Font face declarations */
@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('font/Lexend-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar styles */
.navbar {
    background-color: white;
    color: black;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background-color: white !important;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    background-color: rgba(0,0,0,0.05);
    color: black;
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
    border: 0px solid #e0e0e0;
}

.dropdown-content a {
    color: black !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: white;
    font-family: 'Lexend', sans-serif;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(0,0,0,0.05);
}

.dropdown-content a.active {
    /* background-color: rgba(163, 149, 106, 0.1); */
    border: 0;
    color: #a3956a;
    font-weight: 600;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown:hover .nav-link {
    background-color: rgba(0,0,0,0.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-logo-mobile {
    display: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
}

/* Main content */
.main-content {
    margin-top: 80px; /* Account for fixed navbar */
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 60vh;
    padding: 2rem 0;
}

.hero-logo {
    flex: 0 0 auto;
}

.hero-logo img {
    max-width: 500px;
    height: auto;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.hero-text p {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
}

/* Therapy section */
.therapy-section {
    background-color: #f8f8f5;
    border-radius: 10px;
    padding: 4rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.therapy-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.therapy-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.therapy-icon {
    font-size: 2.5rem;
    /* margin-bottom: 0.5rem; */
}

.therapy-card h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.therapy-cta {
    background: linear-gradient(135deg, #b8a896, rgb(163, 149, 106));
    color: white;
    justify-content: center;
}

.cta-button {
    color: white;
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Practice section */
.practice-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.practice-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.practice-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .practice-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
} */

.practice-image img {
    width: 100%;
    height: 300px;
    object-fit:fill;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.practice-image:hover img {
    transform: scale(1.1);
}

/* Tablet/iPad responsive styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .main-content {
        padding: 2rem 1.5rem;
    }

    .hero-section {
        gap: 2.5rem;
        min-height: 55vh;
        padding: 1.5rem 0;
    }

    .hero-logo img {
        max-width: 350px;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }

    .therapy-section {
        padding: 3rem 1.5rem;
    }

    .therapy-section h2 {
        font-size: 2.2rem;
    }

    .therapy-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }

    .practice-section {
        padding: 3rem 1.5rem;
    }

    .practice-section h2 {
        font-size: 2.2rem;
    }

    .practice-gallery {
        gap: 1.5rem;
    }

    .practice-image img {
        height: 250px;
    }
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 1rem;
    }

    .nav-logo-mobile {
        display: flex;
        order: 1;
        height: 50px;
    }

    .nav-logo-mobile img {
        height: 50px;
        width: auto;
    }

    .main-content {
        margin-top: 100px; /* Increased space for better mobile spacing */
        padding: 1.5rem 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        padding: 0;
        gap: 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        margin: 0;
        color: #333 !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(163, 149, 106, 0.1);
        color: #a3956a !important;
    }

    .nav-link.active {
        background-color: rgba(163, 149, 106, 0.15);
        color: #a3956a !important;
        font-weight: 600;
    }

    .nav-dropdown {
        width: 100%;
        position: relative;
    }

    .nav-dropdown > .nav-link {
        position: relative;
    }

    .nav-dropdown > .nav-link:after {
        content: "▼";
        position: absolute;
        right: 2rem;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > .nav-link:after {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f8f5;
        border: none;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 200px;
        }
    }

    .dropdown-content a {
        color: #666 !important;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-weight: 400;
        font-size: 0.95rem;
        text-align: center;
    }

    .dropdown-content a:hover {
        background-color: rgba(163, 149, 106, 0.1);
        color: #a3956a !important;
    }

    .dropdown-content a.active {
        background-color: rgba(163, 149, 106, 0.15);
        color: #a3956a !important;
        font-weight: 500;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        padding: 0.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        order: 2;
    }

    .nav-toggle:hover {
        background-color: rgba(163, 149, 106, 0.1);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        background-color: #a3956a;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        background-color: #a3956a;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        min-height: 50vh;
    }

    .hero-logo img {
        max-width: 250px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .therapy-section {
        padding: 2.5rem 1rem;
        margin-top: 2rem;
    }

    .therapy-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .therapy-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .therapy-card {
        padding: 1.2rem;
    }

    .therapy-icon {
        font-size: 2rem;
    }

    .therapy-card h3 {
        font-size: 1rem;
    }

    .practice-section {
        padding: 2.5rem 1rem;
    }

    .practice-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .practice-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .practice-image img {
        height: 250px;
    }
}

/* iPad Portrait specific styles */
@media screen and (max-width: 768px) and (min-width: 481px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero-logo img {
        max-width: 320px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .hero-text p {
        font-size: 1.15rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .therapy-section {
        padding: 2rem 1rem;
    }

    .therapy-section h2 {
        font-size: 1.8rem;
    }

    .therapy-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .practice-section {
        padding: 2rem 1rem;
    }

    .practice-section h2 {
        font-size: 1.8rem;
    }

    .practice-gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .practice-image img {
        height: 220px;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .hero-logo img {
        max-width: 300px;
    }
    .hero-section {
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .therapy-section {
        padding: 1.5rem 0.5rem;
    }

    .therapy-section h2 {
        font-size: 1.6rem;
    }

    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .therapy-card {
        padding: 1rem;
    }

    .therapy-icon {
        font-size: 1.8rem;
    }

    .therapy-card h3 {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .practice-section {
        padding: 1.5rem 0.5rem;
    }

    .practice-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .practice-gallery {
        gap: 1rem;
    }

    .practice-image {
        border-radius: 10px;
    }

    .practice-image img {
        height: 200px;
    }
}

/* Footer styles */
.footer {
    background-color: #a3956a;
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    color: #f0f0f0;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    font-family: 'Lexend', sans-serif;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    font-family: 'Lexend', sans-serif;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

.footer-bottom p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer responsive styles */
@media screen and (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .footer-links span {
        display: none;
    }
}

/* About page styles */
.about-section {
    padding: 2rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.placeholder-image {
    width: 300px;
    height: 400px;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Lexend', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 8px;
}

.about-text h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.about-text p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.qualifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.qualification-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-2px);
}

.qualification-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    /* background-color: #a3956a; */
    color: white;
    border-radius: 6px;
    flex-shrink: 0;
}

.qualification-content h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.qualification-content p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* About page responsive styles */
@media screen and (max-width: 1024px) {
    .about-container {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }

    .placeholder-image {
        width: 250px;
        height: 320px;
        font-size: 1rem;
    }

    .about-text h1 {
        font-size: 2.2rem;
    }

    .qualifications {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image {
        position: static;
        justify-self: center;
    }

    .about-image img {
        width: 200px;
        height: 260px;
        margin: 0 auto;
        display: block;
    }

    .placeholder-image {
        width: 200px;
        height: 260px;
        margin: 0 auto;
    }

    .about-text {
        text-align: left;
    }

    .about-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .qualifications {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qualification-section h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 1rem 0;
    }

    .about-image img {
        width: 180px;
        height: 240px;
    }

    .placeholder-image {
        width: 180px;
        height: 240px;
        font-size: 0.9rem;
    }

    .about-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .qualification-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .qualification-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
}

/* Active nav link style */
.nav-link.active {
    background-color: rgba(163, 149, 106, 0.1);
    color: #a3956a;
    font-weight: 600;
}

/* Therapy Services Page styles */
.therapy-services-page {
    padding: 2rem 0;
}

.therapy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.therapy-header h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.therapy-intro {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f8f5;
    padding: 2rem;
    border-radius: 12px;
}

.therapy-intro p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.therapy-areas h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.therapy-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.therapy-area-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    /* border-top: 4px solid #a3956a; */
}

.therapy-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.therapy-area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.therapy-area-card h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.therapy-area-card p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Therapy disclaimer styles */
.therapy-disclaimer {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 1.5rem;
    background-color: #f8f8f5;
    border-radius: 12px;
}

.therapy-disclaimer p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
    text-align: center;
}

/* Therapy Services Page responsive styles */
@media screen and (max-width: 1024px) {
    .therapy-header h1 {
        font-size: 2.2rem;
    }

    .therapy-intro {
        padding: 1.5rem;
    }

    .therapy-intro p {
        font-size: 1rem;
    }

    .therapy-areas h2 {
        font-size: 1.8rem;
    }

    .therapy-area-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .therapy-area-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .therapy-services-page {
        padding: 1rem 0;
    }

    .therapy-header {
        margin-bottom: 3rem;
    }

    .therapy-header h1 {
        font-size: 2rem;
    }

    .therapy-intro {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .therapy-intro p {
        font-size: 0.95rem;
    }

    .therapy-areas h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .therapy-area-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }

    .therapy-area-card {
        padding: 1.5rem;
    }

    .therapy-area-icon {
        font-size: 2.5rem;
    }

    .therapy-area-card h3 {
        font-size: 1.2rem;
    }

    .therapy-area-card p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .therapy-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .therapy-intro {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .therapy-intro p {
        font-size: 0.9rem;
    }

    .therapy-areas h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .therapy-area-grid {
        margin: 0 0.5rem;
        gap: 1rem;
    }

    .therapy-area-card {
        padding: 1rem;
    }

    .therapy-area-icon {
        font-size: 2rem;
    }

    .therapy-area-card h3 {
        font-size: 1.1rem;
    }

    .therapy-area-card p {
        font-size: 0.9rem;
    }

    .therapy-disclaimer {
        margin: 2.5rem 1rem 0 1rem;
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .therapy-disclaimer {
        margin: 2rem 0.5rem 0 0.5rem;
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Patient Info Page styles */
.patient-info-page {
    padding: 2rem 0;
}

.patient-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.patient-info-header h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-sections {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    /* border-left: 4px solid #a3956a; */
}

.info-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f8f5;
}

.info-section p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section ul {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-section li {
    margin-bottom: 0.5rem;
    position: relative;
}

.info-section li::marker {
    color: #a3956a;
    font-weight: 600;
}

/* Patient Info Page responsive styles */
@media screen and (max-width: 1024px) {
    .patient-info-header h1 {
        font-size: 2.2rem;
    }

    .info-sections {
        margin: 0 1rem;
        gap: 2rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.4rem;
    }

    .info-section p,
    .info-section ul {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .patient-info-page {
        padding: 1rem 0;
    }

    .patient-info-header {
        margin-bottom: 2rem;
    }

    .patient-info-header h1 {
        font-size: 2rem;
    }

    .info-sections {
        margin: 0 1rem;
        gap: 1.5rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .info-section p,
    .info-section ul {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .patient-info-header h1 {
        font-size: 1.8rem;
    }

    .info-sections {
        margin: 0 0.5rem;
        gap: 1rem;
    }

    .info-section {
        padding: 1rem;
    }

    .info-section h2 {
        font-size: 1.2rem;
    }

    .info-section p,
    .info-section ul {
        font-size: 0.9rem;
    }

    .info-section ul {
        padding-left: 1rem;
    }
}

/* Pricing Page styles */
.pricing-page {
    padding: 2rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    /* border-left: 4px solid #a3956a; */
}

.pricing-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f8f5;
}

.pricing-table {
    margin-bottom: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Lexend', sans-serif;
}

.pricing-row:last-child {
    border-bottom: none;
}

.duration {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a3956a;
}

.payment-info p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-style: italic;
    background-color: #f8f8f5;
    padding: 1rem;
    border-radius: 8px;
}

.reimbursement-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    /* border-left: 4px solid #a3956a; */
}

.reimbursement-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f8f5;
}

.reimbursement-section > p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.insurance-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.insurance-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Lexend', sans-serif;
    background-color: #f8f8f5;
    border-radius: 8px;
    overflow: hidden;
}

.insurance-table th {
    background-color: #a3956a;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.insurance-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.insurance-table td.service {
    text-align: left;
    background-color: white;
    font-weight: 500;
}

.insurance-table tbody tr:last-child td {
    border-bottom: none;
}

.disclaimer {
    background-color: #f8f8f5;
    padding: 1.5rem;
    border-radius: 8px;
    /* border-left: 4px solid #a3956a; */
}

.disclaimer p {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer p:first-child {
    font-weight: 600;
    color: #333;
}

/* Pricing Page responsive styles */
@media screen and (max-width: 1024px) {
    .pricing-header h1 {
        font-size: 2.2rem;
    }

    .pricing-section,
    .reimbursement-section {
        padding: 1.5rem;
    }

    .pricing-section h2,
    .reimbursement-section h2 {
        font-size: 1.6rem;
    }

    .insurance-table th,
    .insurance-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .pricing-page {
        padding: 1rem 0;
    }

    .pricing-header {
        margin-bottom: 2rem;
    }

    .pricing-header h1 {
        font-size: 2rem;
    }

    .pricing-section,
    .reimbursement-section {
        padding: 1.5rem;
        margin: 0 1rem 2rem 1rem;
    }

    .pricing-row {
        padding: 0.8rem;
    }

    .duration {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .insurance-table th,
    .insurance-table td {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .disclaimer {
        padding: 1rem;
    }

    .disclaimer p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-header h1 {
        font-size: 1.8rem;
    }

    .pricing-section,
    .reimbursement-section {
        margin: 0 0.5rem 1.5rem 0.5rem;
        padding: 1rem;
    }

    .pricing-section h2,
    .reimbursement-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }

    .insurance-table {
        font-size: 0.8rem;
    }

    .insurance-table th,
    .insurance-table td {
        padding: 0.5rem 0.3rem;
    }

    .disclaimer {
        padding: 0.8rem;
    }
}

/* Contact Page styles */
.contact-page {
    padding: 2rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f8f5;
}

.contact-section p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
}

.contact-section p:last-child {
    margin-bottom: 0;
}

.contact-section p strong {
    color: #333;
    font-weight: 600;
}

.door-info {
    background-color: #f8f8f5;
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    margin-top: 1rem !important;
}

.map-container {
    background-color: white !important;
    border-bottom: 0px !important;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

/* Contact Page responsive styles */
@media screen and (max-width: 1024px) {
    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-content {
        gap: 2rem;
        margin: 0 1rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.4rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .contact-page {
        padding: 1rem 0;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-section p {
        font-size: 0.95rem;
    }

    .map-container {
        order: -1;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-content {
        margin: 0 0.5rem;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 1rem;
    }

    .contact-section h2 {
        font-size: 1.2rem;
    }

    .contact-section p {
        font-size: 0.9rem;
    }

    .door-info {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* AGB Page styles */
.agb-section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(163, 149, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agb-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #a3956a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f8f5;
}

.agb-section p {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify;
}

.agb-section p:last-child {
    margin-bottom: 0;
}

.agb-section ul {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0;
}

.agb-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.agb-section li:before {
    content: "";
    color: #a3956a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.agb-section strong {
    color: #a3956a;
    font-weight: 600;
}

/* Main content container for AGB */
.main-content .container h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: black;
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive styles for AGB */
@media screen and (max-width: 1024px) {
    .agb-section {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }

    .agb-section h2 {
        font-size: 1.3rem;
    }

    .main-content .container h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .agb-section {
        margin: 1rem 0;
        padding: 1.2rem;
        border-radius: 8px;
    }

    .agb-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .agb-section p,
    .agb-section ul {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .main-content .container h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .agb-section {
        margin: 0.5rem 0;
        padding: 1rem;
        border-radius: 6px;
    }

    .agb-section h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .agb-section p,
    .agb-section ul {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }

    .agb-section ul {
        margin-left: 1rem;
    }

    .agb-section li {
        padding-left: 0.8rem;
    }

    .main-content .container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #a3956a;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #a3956a;
    margin: 0 0 0.5rem 0;
}

.cookie-text p {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.cookie-text a {
    color: #a3956a;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #8b7c5a;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: #a3956a;
    color: white;
}

.cookie-accept:hover {
    background: #8b7c5a;
    transform: translateY(-2px);
}

.cookie-necessary {
    background: #e0e0e0;
    color: #333;
}

.cookie-necessary:hover {
    background: #d0d0d0;
}

.cookie-settings-btn {
    background: transparent;
    color: #a3956a;
    border: 2px solid #a3956a;
}

.cookie-settings-btn:hover {
    background: #a3956a;
    color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.cookie-modal-header h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #a3956a;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #666;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.cookie-category p {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #a3956a;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 2px solid #f0f0f0;
    text-align: right;
}

/* Responsive Cookie Banner */
@media screen and (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }

    .cookie-text h3 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .cookie-modal-content {
        margin: 0.5rem;
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
