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

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

/* Language switching - ensure Dutch content is visible by default for first-time visitors */
/* All elements with language attributes are visible by default */
[data-nl], [data-en] {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Default language button state - Dutch active by default */
.lang-btn[data-lang="nl"] {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Ensure Dutch button appears active by default even before JavaScript loads */
.language-switcher .lang-btn[data-lang="nl"]:not(.lang-btn[data-lang="en"].active) {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Ensure fallback text content is always visible */
body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation links should always be visible */
.nav-link {
    display: block !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease, transform 0.3s ease;
}

/* Navbar when scrolled */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-logo h2 {
    color: #333;
}

.navbar.scrolled .nav-link {
    color: #333;
    font-weight: 500;
}

.navbar.scrolled .nav-link:hover {
    color: #f49f85;
}

/* Ensure white text has shadow for better visibility on transparent background */
.navbar:not(.scrolled) .nav-logo h2,
.navbar:not(.scrolled) .nav-link {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #f49f85;
}

.nav-button {
    background: #f49f85;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.nav-button:hover {
    background: #e88a6e;
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 6rem 0 4rem 0;
    background: #f8f6f3;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #7ba098;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* 4 service cards in one row layout */
.services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Custom Services Layout for Main Page */
.services-grid-custom {
    margin-top: 4rem;
}

.services-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.services-row-bottom {
    display: flex;
    justify-content: center;
}

.services-row-bottom .service-card {
    max-width: 400px;
    width: 100%;
}

a.service-card,
.service-card {
    display: block;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a.service-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 1.5rem 1rem;
}

.service-card p {
    margin: 0 1.5rem 2rem;
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

/* Booking Section */
.booking-section {
    padding: 4rem 0;
    background: #f49f85;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-text h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 300;
}

.booking-text p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    opacity: 0.9;
}

.booking-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.selector-header span {
    font-weight: 600;
    color: #333;
}

.auth-links {
    display: flex;
    gap: 1rem;
}

.auth-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.appointment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.appointment-option:last-of-type {
    border-bottom: none;
}

.appointment-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.appointment-info span {
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
}

.book-btn {
    background: #333;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #555;
}

.powered-by {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.powered-by span {
    color: #999;
    font-size: 0.8rem;
}

.powered-by strong {
    color: #333;
    font-weight: 600;
}

/* Contact Section - Always static and visible */
.contact-section {
    padding: 6rem 0;
    background: #e8e0d9;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Contact Form Section - Only on overmij.html */
.contact-form-section {
    padding: 6rem 0;
    background: #f8f6f3;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7ba098;
}

.contact-submit-btn {
    width: 100%;
    background: #f49f85;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #e88a6e;
    transform: translateY(-2px);
}


/* Ensure all contact and footer sections are always static */
.contact, .contact-section, .contact-content, .contact-info-section, .contact-container, footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

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

.location h3,
.contact h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    color: #7ba098;
    margin-bottom: 2rem;
    font-weight: 300;
}

.location p,
.contact p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location strong,
.contact strong {
    color: #333;
}



/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #f49f85;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(244, 159, 133, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #e88a6e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 159, 133, 0.4);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Make navbar fixed on mobile for proper menu functionality */
    .navbar {
        position: fixed !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom: none;
    }
    
    /* Blue header for tarieven and over mij pages on mobile */
    body:has(.tarieven-content) .navbar,
    body:has(.overmij-content) .navbar {
        background: rgba(107, 155, 158, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Force white text on mobile navbar with shadow for visibility */
    .navbar .nav-logo h2,
    .navbar.scrolled .nav-logo h2,
    .navbar:not(.scrolled) .nav-logo h2 {
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    .navbar .nav-button {
        color: white !important;
        background: #f49f85 !important;
    }
    
    /* Force hamburger to be white with shadow on mobile */
    .navbar .bar,
    .navbar.scrolled .bar,
    .navbar:not(.scrolled) .bar {
        background: white !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Ensure hamburger stays white on blue header pages too */
    body:has(.tarieven-content) .navbar .bar,
    body:has(.overmij-content) .navbar .bar {
        background: white !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(123, 160, 152, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        gap: 0.5rem;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }
    
    /* Force show all navigation elements in mobile menu */
    .nav-menu.active * {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* No need for backdrop - fullscreen menu */
    
    .nav-menu .nav-link {
        color: white !important;
        font-size: 1.3rem;
        padding: 0.8rem 2rem;
        font-weight: 500;
        border-radius: 8px;
        display: block !important;
        text-decoration: none;
        transition: all 0.3s ease;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 200px;
        text-align: center;
    }
    
    .nav-menu .nav-link:hover {
        color: #f49f85;
        background: rgba(255,255,255,0.1);
        transform: scale(1.05);
    }
    
    .nav-menu .nav-link.active {
        color: #f49f85;
        font-weight: 600;
        background: rgba(244, 159, 133, 0.2);
    }
    
    .nav-menu .language-switcher {
        margin-top: 1rem;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-menu .language-switcher .lang-btn {
        background: none;
        border: 1px solid rgba(255,255,255,0.5);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-menu .language-switcher .lang-btn.active {
        background: #f49f85;
        color: white;
        border-color: #f49f85;
    }

    .nav-toggle {
        display: flex;
        z-index: 10000;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .bar {
        background: white;
        width: 25px;
        height: 3px;
        margin: 3px 0;
        transition: 0.3s;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .navbar.scrolled .bar {
        background: #333;
        box-shadow: none;
    }

    .hero {
        margin-top: 0; /* No margin needed for transparent header */
        height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-text {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: auto;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure body has no padding for transparent header on mobile */
    body {
        padding-top: 0;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Add padding for pages with blue header on mobile */
    body:has(.tarieven-content),
    body:has(.overmij-content) {
        padding-top: 80px;
    }
    
    /* Prevent horizontal overflow on all elements */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Specific container fixes */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Force vertical stack layout for service cards on mobile */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
        margin-top: 2rem !important;
    }
    
    /* Override any grid properties */
    .services .services-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    /* All service cards use full width on mobile */
    .services .services-grid .service-card {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .service-card h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .service-card p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.7;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .booking-text h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    /* Improve button visibility on mobile */
    .nav-button {
        display: none;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Additional mobile viewport fixes */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

    .booking-widget {
        padding: 1.5rem;
    }
    
    /* Booking Widget Mobile */
    .booking-widget-container {
        margin: 3rem 1rem;
        padding: 2rem 1.5rem;
        max-width: calc(100% - 2rem);
    }
    
    .booking-widget-container .booking-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        text-align: center;
        white-space: pre-line;
    }

    .appointment-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .book-btn {
        align-self: stretch;
        text-align: center;
    }

    /* Massage Page Mobile */
    .massage-hero .hero-title {
        font-size: 2rem;
        white-space: normal;
    }

    .massage-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .massage-grid-two {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Personal Training Page Mobile */
    .pt-hero .hero-title {
        font-size: 2.5rem;
    }

    .pt-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .quote-source {
        font-size: 1rem;
    }
    
    /* Content Grid Mobile */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .quote-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Force all multi-column grids to single column on mobile */
    .fysio-content-container,
    .fysio-specialisaties-container,
    .fysio-booking-container,
    .overmij-container,
    .contact-info-container,
    .tarieven-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    

    /* Yoga Page Mobile */
    .yoga-hero .hero-title {
        font-size: 2.5rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .gallery-image.large {
        grid-row: auto;
    }

    .gallery-image {
        height: 250px;
    }

    .quote-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-text blockquote {
        font-size: 1.8rem;
    }

    .quote-text cite {
        font-size: 1.2rem;
    }
} 

/* Active Navigation Link */
.nav-link.active {
    color: #f49f85 !important;
    font-weight: 600;
}

/* Page Hero Section */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e0d9 100%);
    text-align: center;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: #7ba098;
    margin-bottom: 2rem;
    font-weight: 500;
}

.page-hero .hero-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: white;
}

.content-section.alt {
    background: #f8f6f3;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.content-text h2 {
    font-size: 2.5rem;
    color: #7ba098;
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #f8f6f3;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #7ba098;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #7ba098;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #f49f85;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e88a6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 159, 133, 0.25);
}

/* Massage Page Specific Styles */
.massage-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/images/services/massage-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.massage-hero .hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    white-space: pre-line !important;
    word-break: keep-all;
    overflow-wrap: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.massage-intro {
    padding: 3rem 0;
    background: #f8f6f3;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.massage-types {
    padding: 3rem 0;
    background: white;
}

.massage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 2rem;
}

.massage-type h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #f49f85;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.massage-type p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.special-massage-types {
    padding: 2rem 0;
    background: white;
}

.massage-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.massage-cta {
    padding: 2rem 0;
    background: white;
    text-align: center;
}

.massage-cta .cta-button {
    background: #f49f85;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.massage-cta .cta-button:hover {
    background: #e88a6e;
    transform: translateY(-2px);
}

/* Booking Widget Styling */
.booking-widget-container {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 4rem auto;
    max-width: 800px;
    position: relative;
    text-align: center;
}

.booking-widget-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f49f85, #7ba098);
    border-radius: 17px;
    z-index: -1;
}

.booking-widget-container .booking-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    color: #7ba098;
    margin-bottom: 2rem;
    font-weight: 500;
}

.booking-widget-container .md-scheduler {
    background: transparent;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: opacity 0.2s ease-in-out;
}

/* Hide brief flicker during auto-selection */
.booking-widget-container .md-scheduler [data-name*="Yara van den Brink"] {
    transition: all 0.1s ease;
}

.booking-widget-container .booking-fallback {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.booking-widget-container .booking-link {
    color: #f49f85;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.booking-widget-container .booking-link:hover {
    color: #e88a6e;
    text-decoration: underline;
}

/* Personal Training Page Specific Styles */
.pt-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/images/services/personal-training-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.pt-hero .hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    white-space: normal;
}

.pt-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.pt-intro {
    padding: 6rem 0;
    background: #f8f6f3;
}

.pt-intro .intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.pt-intro .intro-text:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f6f3;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: left;
}

.testimonial-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #f49f85;
    margin-bottom: 1rem;
    font-weight: 500;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quote-source {
    color: #f49f85;
    font-size: 0.9rem;
    font-style: italic;
}

/* Yoga Page Specific Styles */
.yoga-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/images/services/yoga-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.yoga-hero .hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    white-space: normal;
}

.yoga-intro {
    padding: 6rem 0;
    background: #f8f6f3;
}

.intro-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    color: #f49f85;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.yoga-intro .intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lesson-types {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lesson-types p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.lesson-types ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.lesson-types li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.lesson-types li:before {
    content: "•";
    color: #f49f85;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.closing-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 2rem;
    font-style: italic;
}

/* Yoga Gallery */
.yoga-gallery {
    padding: 6rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-image {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-image.large {
    grid-column: 1 / 3;
    grid-row: 1;
}

.gallery-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-image.large img {
    height: 300px;
    object-fit: cover;
}

.gallery-image.small img {
    object-fit: contain;
}

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

/* Yoga Quote Section */
.yoga-quote {
    padding: 6rem 0;
    background: #f8f6f3;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-text blockquote {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    color: #7ba098;
    line-height: 1.3;
    margin: 0 0 2rem;
    font-weight: 300;
}

.quote-text cite {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #7ba098;
    font-style: italic;
    font-weight: 300;
}

.quote-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
} 

/* Tarieven Page Specific Styles */
.tarieven-content {
    padding: 100px 0 50px;
    background: #f8f6f3;
    min-height: 100vh;
}

/* Override navigation styles for tarieven page */
body:has(.tarieven-content) .navbar {
    background: rgba(107, 155, 158, 0.95);
    backdrop-filter: blur(10px);
}

body:has(.tarieven-content) .nav-logo h2 a {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body:has(.tarieven-content) .nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body:has(.tarieven-content) .nav-link:hover {
    color: #f49f85 !important;
}

body:has(.tarieven-content) .nav-toggle .bar {
    background-color: white !important;
}

.tarieven-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tarieven-left {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tarieven-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tarieven-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tarieven-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-section {
    margin-bottom: 40px;
}

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

.section-title {
    color: #d4a574;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

.section-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.service-name {
    color: #666;
    font-size: 16px;
    flex: 1;
}

.price {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    min-width: 80px;
    text-align: right;
}

/* Contact section for tarieven page */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Ensure all contact sections use consistent styling */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    color: #7ba098;
    margin-bottom: 2rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .tarieven-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tarieven-right {
        position: static;
    }
    
    .tarieven-left {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .tarieven-images {
        grid-template-columns: 1fr;
    }
    
    .tarieven-image {
        height: 200px;
    }
    
    .contact-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
} 

/* Over mij Page Specific Styles */
.overmij-content {
    padding: 100px 0 80px;
    background: #f8f6f3;
}

.overmij-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.overmij-left {
    padding-right: 40px;
}

.overmij-title {
    color: #7ba098;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
}

.overmij-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.overmij-text p strong {
    color: #333;
    font-weight: 600;
}

.overmij-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.overmij-image {
    width: 100%;
    max-width: 500px;
}

.overmij-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-left {
    padding-right: 40px;
}

.contact-info-title {
    color: #d4a574;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
}

.contact-info-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 12px;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.lang-divider {
    color: white;
    opacity: 0.6;
}

/* Navigation override for tarieven page */
body:has(.tarieven-content) .navbar {
    background: rgba(107, 155, 158, 0.95);
    backdrop-filter: blur(10px);
}

body:has(.tarieven-content) .nav-logo h2 a {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body:has(.tarieven-content) .nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body:has(.tarieven-content) .nav-link:hover {
    color: #f49f85 !important;
}

body:has(.tarieven-content) .nav-toggle .bar {
    background-color: white !important;
}

body:has(.tarieven-content) .lang-btn {
    color: white !important;
}

body:has(.tarieven-content) .lang-divider {
    color: white !important;
}

/* Navigation override for overmij page */
body:has(.overmij-content) .navbar {
    background: rgba(107, 155, 158, 0.95);
    backdrop-filter: blur(10px);
}

body:has(.overmij-content) .nav-logo h2 a {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body:has(.overmij-content) .nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body:has(.overmij-content) .nav-link:hover {
    color: #f49f85 !important;
}

body:has(.overmij-content) .nav-toggle .bar {
    background-color: white !important;
}

body:has(.overmij-content) .lang-btn {
    color: white !important;
}

body:has(.overmij-content) .lang-divider {
    color: white !important;
}

@media (max-width: 768px) {
    .overmij-container,
    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .overmij-left,
    .contact-info-left {
        padding-right: 0;
    }
    
    .overmij-title {
        font-size: 2.5rem;
    }
    
    .contact-info-title {
        font-size: 2.2rem;
    }
    
    .overmij-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Additional mobile fixes for services section */
@media (max-width: 768px) {
    /* Force services grid to be vertical stack */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        padding: 0 !important;
    }
    
    .services .services-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    /* Service cards full width mobile styling */
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        box-sizing: border-box;
    }
    
    .service-card h3 {
        font-size: 1.3rem !important;
        margin: 1.5rem 1rem 1rem !important;
    }
    
    .service-card p {
        font-size: 0.95rem !important;
        margin: 0 1rem 1.5rem !important;
        line-height: 1.6;
    }
    
    .service-image {
        height: 180px !important;
    }
} 

/* Fysiotherapie Page Specific Styles */
.fysio-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/images/services/physiotherapy-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.fysio-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.fysio-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 0;
    font-family: 'Manrope', sans-serif;
    white-space: pre-line !important;
    word-break: keep-all;
    overflow-wrap: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fysio-quote {
    padding: 80px 0;
    background: #f8f6f3;
    text-align: center;
}

.fysio-quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.fysio-quote-text {
    font-size: 2.2rem;
    font-style: italic;
    color: #d4a574;
    line-height: 1.4;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
}

.fysio-content {
    padding: 80px 0;
    background: #f8f6f3;
}

.fysio-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fysio-content-left {
    padding-right: 40px;
}

.fysio-content-left p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.fysio-content-left strong {
    color: #333;
    font-weight: 600;
}

.fysio-content-left ul {
    margin: 20px 0;
    padding-left: 20px;
}

.fysio-content-left li {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.fysio-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fysio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fysio-image:first-child {
    grid-column: 1 / -1;
    height: 250px;
}

.fysio-specialisaties {
    padding: 80px 0;
    background: white;
}

.fysio-specialisaties-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fysio-specialisaties-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fysio-specialisaties-title {
    color: #d4a574;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
}

.fysio-specialisaties-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.fysio-booking {
    padding: 80px 0;
    background: #f8f6f3;
}

.fysio-booking-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fysio-booking-title {
    color: #7ba098;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
}

.fysio-booking-text {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.fysio-booking-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.booking-auth span {
    color: #666;
    font-size: 12px;
    margin-left: 15px;
    cursor: pointer;
}

.booking-selector {
    margin-bottom: 30px;
}

.booking-select-btn {
    width: 100%;
    padding: 15px;
    background: #f8f6f3;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.booking-services {
    margin-bottom: 30px;
}

.booking-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.service-info h4 {
    color: #333;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.service-info span {
    color: #666;
    font-size: 14px;
}

.service-info p {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0 0;
}

.book-btn {
    background: #333;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.booking-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.booking-footer span {
    color: #666;
    font-size: 12px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .fysio-hero-title {
        font-size: 2.5rem;
    }
    
    .fysio-quote-text {
        font-size: 1.6rem;
    }
    
    .fysio-content-container,
    .fysio-specialisaties-container,
    .fysio-booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .fysio-content-left {
        padding-right: 0;
    }
    
    .fysio-images-grid {
        grid-template-columns: 1fr;
    }
    
    .fysio-image:first-child {
        grid-column: 1;
        height: 200px;
    }
    
    .fysio-specialisaties-title,
    .fysio-booking-title {
        font-size: 2.2rem;
    }
} 