/* ==================================
   RESET & BASE STYLES
   ================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #4A7C59;
    --color-secondary: #D4A574;
    --color-bg: #FAF8F5;
    --color-text: #2B2B2B;
    --color-dark: #2B2B2B;
    --color-white: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================================
   NAVIGATION
   ================================== */

.main-nav {
    background: var(--color-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.lang-switcher a {
    color: var(--color-text);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    opacity: 1;
    color: var(--color-primary);
}

.lang-switcher .separator {
    opacity: 0.3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* ==================================
   HERO SECTION
   ================================== */

.hero-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 120px 40px;
    position: relative;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ==================================
   FOUR BOXES SECTION
   ================================== */

.boxes-section {
    max-width: 1400px;
    margin: -60px auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.box-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.box-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.15);
}

.box-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.box-card h3 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.box-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

.box-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.box-button:hover {
    background: #3d6548;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* ==================================
   CTA SECTION
   ================================== */

.cta-section {
    background: var(--color-secondary);
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-secondary);
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ==================================
   FOOTER
   ================================== */

.main-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.footer-center,
.footer-left,
.footer-right {
    font-size: 14px;
    line-height: 1.8;
}

.footer-right a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer-right .separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */

/* ==================================
   TEAM PAGE
   ================================== */

.team-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d6548 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 40px;
}

.team-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.team-hero p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.team-cards-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.therapist-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.therapist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.15);
}

.therapist-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #E8E5E0 0%, #D4D0CB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--color-primary);
}

.therapist-card h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.therapist-role {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.therapist-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.services-section {
    margin: 25px 0;
    text-align: left;
}

.services-section h3 {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 15px;
    color: #666;
    padding: 6px 0 6px 20px;
    position: relative;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.prices-section {
    margin: 25px 0;
    text-align: left;
}

.prices-section h3 {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.prices-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prices-list li {
    font-size: 15px;
    color: #666;
    padding: 8px 12px;
    background: #F5F5F5;
    border-radius: 6px;
}

.therapist-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.btn-primary {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #3d6548;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    display: block;
    width: 100%;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: #c89563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .boxes-section {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }
    
    .hero-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    /* Hero */
    .hero-section {
        padding: 80px 30px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    /* Boxes */
    .boxes-section {
        margin: -40px auto 60px;
        padding: 0 20px;
    }
    
    .boxes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 30px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 30px;
    }
    
    /* Team Page */
    .team-hero h1 {
        font-size: 42px;
    }
    
    .team-hero p {
        font-size: 18px;
    }
    
    .team-cards-section {
        margin: 60px auto;
        padding: 0 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .therapist-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .box-card {
        padding: 30px 20px;
    }
}

/* ==================================
   YELLOW DRAGON PAGE
   ================================== */

.yd-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #3d6548 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.yd-hero h1 {
    font-size: 64px;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.yd-hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.95;
}

.yd-hero p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.yd-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.yd-section {
    margin-bottom: 80px;
}

.yd-section h2 {
    font-size: 42px;
    color: #4A7C59;
    margin-bottom: 25px;
    text-align: center;
}

.yd-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #2B2B2B;
    margin-bottom: 20px;
}

.yd-concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.yd-concept-card {
    background: #FFFFFF;
    border: 2px solid #E8E5E0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.yd-concept-card:hover {
    border-color: #4A7C59;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
    transform: translateY(-4px);
}

.yd-concept-card h3 {
    font-size: 24px;
    color: #4A7C59;
    margin-bottom: 15px;
}

.yd-concept-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.yd-approach-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.yd-approach-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #2B2B2B;
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #E8E5E0;
}

.yd-approach-list li:last-child {
    border-bottom: none;
}

.yd-approach-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-size: 24px;
}

.yd-techniques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.yd-technique-box {
    background: #F9F8F6;
    border-left: 4px solid #4A7C59;
    padding: 30px;
    border-radius: 8px;
}

.yd-technique-box h3 {
    font-size: 26px;
    color: #4A7C59;
    margin-bottom: 20px;
}

.yd-technique-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #2B2B2B;
    margin: 0;
}

.yd-cta {
    background: #D4A574;
    padding: 80px 40px;
    text-align: center;
    margin-top: 60px;
}

.yd-cta h2 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.yd-cta p {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 35px;
    opacity: 0.95;
}

.yd-cta-button {
    display: inline-block;
    background: #FFFFFF;
    color: #D4A574;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.yd-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Yellow Dragon Responsive */
@media (max-width: 768px) {
    .yd-hero h1 {
        font-size: 48px;
    }
    
    .yd-hero h2 {
        font-size: 24px;
    }
    
    .yd-section h2 {
        font-size: 36px;
    }
    
    .yd-techniques {
        grid-template-columns: 1fr;
    }
    
    .yd-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .yd-hero {
        padding: 60px 30px;
    }
    
    .yd-hero h1 {
        font-size: 40px;
    }
    
    .yd-content {
        padding: 60px 30px;
    }
    
    .yd-cta h2 {
        font-size: 28px;
    }
}

/* ==================================
   THERAPEUTEN PAGE
   ================================== */

.therapeuten-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #3d6548 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 40px;
}

.therapeuten-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.therapeuten-hero p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

/* Category Navigation */
.category-nav {
    max-width: 1200px;
    margin: -30px auto 30px;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.category-nav-link {
    background: white;
    color: #4A7C59;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-nav-link:hover {
    background: #4A7C59;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.therapeuten-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Categories Grid - 3 columns */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Category Column */
.category-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-column-title {
    font-size: 32px;
    color: #4A7C59;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4A7C59;
}

.therapeuten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practitioner-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.practitioner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.15);
}

.practitioner-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #E8E5E0 0%, #D4D0CB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.practitioner-card h3 {
    font-size: 32px;
    color: #4A7C59;
    margin-bottom: 5px;
}

.practitioner-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.practitioner-specialty {
    font-size: 18px;
    color: #2B2B2B;
    font-weight: 600;
    margin-bottom: 15px;
}

.practitioner-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.practitioner-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
}

.practitioner-contact a {
    color: #4A7C59;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.practitioner-contact a:hover {
    opacity: 0.7;
}

.practitioner-button {
    display: inline-block;
    background: #4A7C59;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.practitioner-button:hover {
    background: #3d6548;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Therapeuten Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .category-column-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .therapeuten-hero h1 {
        font-size: 42px;
    }
    
    .therapeuten-hero p {
        font-size: 18px;
    }
    
    .therapeuten-content {
        padding: 60px 30px;
    }
    
    .categories-grid {
        gap: 50px;
    }
    
    .category-column-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .therapeuten-hero {
        padding: 60px 30px;
    }
    
    .therapeuten-category h2 {
        font-size: 36px;
    }
}

/* ==================================
   RAUM MIETEN PAGE
   ================================== */

.rent-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #D4A574 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.rent-hero h1 {
    font-size: 64px;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.rent-hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.95;
}

.rent-hero p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.rent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.rent-section {
    margin-bottom: 80px;
}

.rent-section h2 {
    font-size: 42px;
    color: #4A7C59;
    margin-bottom: 25px;
    text-align: center;
}

.rent-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #2B2B2B;
    max-width: 900px;
    margin: 0 auto 40px;
    white-space: pre-line;
}

.rent-options-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #2B2B2B;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    white-space: pre-line;
}

.rent-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.rent-room-card {
    background: #FFFFFF;
    border: 2px solid #E8E5E0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.rent-room-card:hover {
    border-color: #4A7C59;
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.15);
    transform: translateY(-4px);
}

.rent-room-card h3 {
    font-size: 32px;
    color: #4A7C59;
    margin-bottom: 20px;
}

.rent-room-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.rent-room-card strong {
    color: #2B2B2B;
}

.rent-price {
    font-size: 24px;
    font-weight: 700;
    color: #4A7C59;
    margin: 20px 0 5px;
}

.rent-price-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.rent-weekend {
    font-size: 16px;
    color: #D4A574;
    font-weight: 600;
    margin-top: 10px;
}

.rent-advantages-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto 0;
}

.rent-advantages-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #2B2B2B;
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #E8E5E0;
}

.rent-advantages-list li:last-child {
    border-bottom: none;
}

.rent-advantages-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 22px;
}

.rent-bonus {
    background: #F9F4E8;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.rent-bonus h2 {
    font-size: 36px;
    color: #D4A574;
    margin-bottom: 25px;
}

.rent-bonus p {
    font-size: 17px;
    line-height: 1.8;
    color: #2B2B2B;
    white-space: pre-line;
}

.rent-conditions {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto 0;
}

.rent-conditions h3 {
    font-size: 24px;
    color: #4A7C59;
    margin-bottom: 15px;
    text-align: center;
}

.rent-conditions p {
    font-size: 16px;
    line-height: 1.8;
    color: #2B2B2B;
    margin: 8px 0;
}

.rent-cta {
    background: #4A7C59;
    padding: 80px 40px;
    text-align: center;
    margin-top: 80px;
}

.rent-cta h2 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.rent-cta p {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
    opacity: 0.95;
    white-space: pre-line;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rent-cta-button {
    display: inline-block;
    background: #FFFFFF;
    color: #4A7C59;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.rent-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Raum Mieten Responsive */
@media (max-width: 768px) {
    .rent-hero {
        padding: 80px 30px;
    }
    
    .rent-hero h1 {
        font-size: 48px;
    }
    
    .rent-hero h2 {
        font-size: 24px;
    }
    
    .rent-content {
        padding: 60px 30px;
    }
    
    .rent-section h2 {
        font-size: 36px;
    }
    
    .rent-rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rent-bonus {
        padding: 40px 30px;
    }
    
    .rent-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .rent-hero h1 {
        font-size: 40px;
    }
    
    .rent-room-card {
        padding: 30px 20px;
    }
}

/* ==================================
   VIDEO BACKGROUND
   ================================== */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    animation: videoFade 23s ease-in-out infinite;
}

@keyframes videoFade {
    0% { opacity: 0; }
    4% { opacity: 1; }
    96% { opacity: 1; }
    100% { opacity: 0; }
}

/* Ensure content stays on top of video */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.rent-hero {
    position: relative;
    overflow: hidden;
}

.rent-hero h1,
.rent-hero h2,
.rent-hero p {
    position: relative;
    z-index: 1;
}

/* Dark overlay for better text readability */
.hero-section::before,
.rent-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* ==================================
   CONTACT, IMPRESSUM, AGB PAGES
   ================================== */

.legal-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #3d6548 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 40px;
}

.legal-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.legal-hero p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.legal-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h2 {
    font-size: 32px;
    color: #4A7C59;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 18px;
    color: #4A7C59;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #2B2B2B;
    margin: 0;
}

.contact-info-item a {
    color: #4A7C59;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-item a:hover {
    opacity: 0.7;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-map iframe {
    border-radius: 12px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    color: #4A7C59;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 24px;
    color: #2B2B2B;
    margin: 30px 0 15px;
}

.legal-section p,
.legal-section ul {
    font-size: 16px;
    line-height: 1.8;
    color: #2B2B2B;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
}

.legal-section strong {
    color: #4A7C59;
    font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 30px;
    }
    
    .legal-hero h1 {
        font-size: 42px;
    }
    
    .legal-content {
        padding: 0 30px;
        margin: 60px auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 36px;
    }
}

/* ==================================
   PERSONAL PAGES (TOM, AYA)
   ================================== */

.personal-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #3d6548 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.personal-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.personal-hero h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.personal-hero-quote {
    font-size: 20px;
    font-style: italic;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.personal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.personal-section {
    margin-bottom: 80px;
}

.personal-section h2 {
    font-size: 38px;
    color: #4A7C59;
    margin-bottom: 25px;
}

.personal-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #2B2B2B;
    white-space: pre-line;
    margin-bottom: 20px;
}

.personal-techniques {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.personal-techniques li {
    font-size: 18px;
    padding: 12px 0 12px 35px;
    position: relative;
    color: #2B2B2B;
    border-bottom: 1px solid #E8E5E0;
}

.personal-techniques li:last-child {
    border-bottom: none;
}

.personal-techniques li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: bold;
    font-size: 20px;
}

.personal-services {
    background: #F9F7F4;
    border-radius: 16px;
    padding: 40px;
}

.personal-services h3 {
    font-size: 28px;
    color: #4A7C59;
    margin-bottom: 20px;
}

.personal-services p {
    margin-bottom: 15px;
}

.personal-prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.personal-price-item {
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #2B2B2B;
    font-weight: 600;
}

.personal-service-box {
    background: #FFFFFF;
    border-left: 4px solid #4A7C59;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.personal-service-box h3 {
    font-size: 26px;
    color: #4A7C59;
    margin-bottom: 15px;
}

.personal-service-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #2B2B2B;
    white-space: pre-line;
}

.personal-cta {
    background: #4A7C59;
    padding: 80px 40px;
    text-align: center;
    margin-top: 80px;
}

.personal-cta h2 {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.personal-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.personal-cta-button {
    display: inline-block;
    background: #FFFFFF;
    color: #4A7C59;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.personal-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.personal-gallery {
    margin: 60px 0;
}

.personal-gallery h2 {
    font-size: 38px;
    color: #4A7C59;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #E8E5E0 0%, #D4D0CB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

/* Personal Pages Responsive */
@media (max-width: 768px) {
    .personal-hero {
        padding: 80px 30px;
    }
    
    .personal-hero h1 {
        font-size: 42px;
    }
    
    .personal-content {
        padding: 60px 30px;
    }
    
    .personal-section h2 {
        font-size: 32px;
    }
    
    .personal-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .personal-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .personal-hero h1 {
        font-size: 36px;
    }
    
    .personal-services {
        padding: 30px 20px;
    }
}
/* =============================================
   THE JOURNEY PAGE STYLES
   ============================================= */

/* Hero Section */
.journey-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #D4AF37 100%);
    color: white;
    text-align: center;
    padding: 120px 40px 80px;
}

.journey-hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.journey-hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0.95;
}

.journey-hero-tagline {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content Container */
.journey-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

/* Journey Sections */
.journey-section {
    margin-bottom: 60px;
}

.journey-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.journey-section h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #4A7C59;
    margin: 30px 0 15px;
}

.journey-section h4 {
    font-size: 20px;
    color: #2C3E50;
    margin: 25px 0 12px;
    font-weight: 600;
}

.journey-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Includes List */
.journey-includes-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.journey-includes-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.journey-includes-list li:before {
    content: "🔹";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Checklist */
.journey-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.journey-checklist li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.journey-checklist li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Package Cards Container */
.journey-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

/* Package Card */
.journey-package-card {
    background: white;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.journey-package-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.journey-main-package {
    border-color: #4A7C59;
    border-width: 3px;
}

.journey-package-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.package-price {
    font-size: 22px;
    color: #4A7C59;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-price-large {
    font-size: 28px;
    color: #4A7C59;
    font-weight: 700;
    margin-bottom: 25px;
}

.package-details {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-details li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.package-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-size: 24px;
    line-height: 1;
}

.package-pricing {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.package-pricing li {
    font-size: 17px;
    color: #2C3E50;
    margin-bottom: 8px;
    font-weight: 500;
}

/* CTA Button */
.journey-cta-button {
    display: inline-block;
    background: #4A7C59;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.journey-cta-button:hover {
    background: #3A6849;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Disclaimer */
.journey-disclaimer {
    background: #F9F7F4;
    border: 1px solid #E0DDD8;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.journey-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Alternative Section */
.journey-alternative {
    background: #F5F5F5;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.journey-alternative h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.journey-alternative p {
    font-size: 17px;
    margin-bottom: 20px;
}

.journey-link {
    color: #4A7C59;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.journey-link:hover {
    color: #3A6849;
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
    .journey-hero {
        padding: 80px 20px 60px;
    }
    
    .journey-hero h1 {
        font-size: 36px;
    }
    
    .journey-hero h2 {
        font-size: 22px;
    }
    
    .journey-hero-tagline {
        font-size: 16px;
    }
    
    .journey-content {
        padding: 30px 20px 60px;
    }
    
    .journey-section h2 {
        font-size: 28px;
    }
    
    .journey-section h3 {
        font-size: 22px;
    }
    
    /* Stack package cards on mobile */
    .journey-packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .journey-package-card {
        padding: 25px;
    }
    
    .package-price-large {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .journey-hero h1 {
        font-size: 28px;
    }
    
    .journey-hero h2 {
        font-size: 18px;
    }
    
    .journey-section h2 {
        font-size: 24px;
    }
    
    .journey-package-card {
        padding: 20px;
    }
}

/* =============================================
   VIDEO PRODUCTION PAGE STYLES
   ============================================= */

/* Video Hero Section */
.video-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #D4A574 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.video-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.video-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.video-hero h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.video-hero-image {
    max-width: 400px;
    width: 100%;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    margin-top: 30px;
}

/* Video Services Section */
.video-services {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.video-services h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4A7C59;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Flexible Production Section */
.video-flexible {
    background: #F9F7F4;
    padding: 80px 20px;
}

.video-flexible h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 60px;
}

.flexible-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.flexible-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.flexible-item {
    margin-bottom: 35px;
}

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

.flexible-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.flexible-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Process Section */
.video-process {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.video-process h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #4A7C59;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A7C59, #D4A574);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Technical Excellence Section */
.video-tech {
    background: #2C3E50;
    color: white;
    padding: 80px 20px;
}

.video-tech h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.tech-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

.tech-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.tech-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 10px;
}

/* Long-Term Content Strategy */
.video-strategy {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.video-strategy h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 60px;
}

.strategy-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.strategy-box {
    background: white;
    border: 2px solid #4A7C59;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.strategy-box h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.strategy-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.strategy-box ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.strategy-box ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.strategy-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-size: 24px;
}

/* Studio Renter Bonus */
.video-bonus {
    background: #F9F4E8;
    border: 3px solid #D4A574;
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.video-bonus h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #2C3E50;
    margin-bottom: 30px;
}

.bonus-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-item {
    background: white;
    border: 2px solid #D4A574;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.bonus-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.bonus-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.bonus-extra {
    font-size: 17px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.bonus-button {
    display: inline-block;
    background: #4A7C59;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bonus-button:hover {
    background: #3A6849;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

/* About Mischa Section */
.video-about {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.video-about h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 40px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-content p strong {
    color: #2C3E50;
    font-size: 18px;
}

/* References Section */
.video-references {
    background: #F9F7F4;
    padding: 80px 20px;
}

.video-references h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: #2C3E50;
    margin-bottom: 50px;
}

.reference-video {
    max-width: 900px;
    margin: 0 auto;
}

.reference-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Contact CTA Section */
.video-cta {
    background: #4A7C59;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.video-cta h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.video-cta p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-contact {
    margin: 30px 0;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 15px;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #4A7C59;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button-large:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* =============================================
   VIDEO PRODUCTION - RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flexible-content {
        grid-template-columns: 1fr;
    }
    
    .strategy-boxes {
        grid-template-columns: 1fr;
    }
    
    .bonus-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .video-hero h1 {
        font-size: 36px;
    }
    
    .video-hero h2 {
        font-size: 20px;
    }
    
    .video-hero-image {
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .video-services h2,
    .video-flexible h2,
    .video-process h2,
    .video-tech h2,
    .video-strategy h2,
    .video-references h2,
    .video-cta h2,
    .video-about h2 {
        font-size: 32px;
    }
    
    .video-bonus h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .video-hero {
        padding: 100px 15px 60px;
    }
    
    .video-hero h1 {
        font-size: 28px;
    }
    
    .video-hero h2 {
        font-size: 18px;
    }
    
    .service-card,
    .strategy-box,
    .bonus-item {
        padding: 25px;
    }
}

/* =============================================
   MANUELA PAGE STYLES (Personal Practitioner Page)
   ============================================= */

/* Practitioner Hero */
.practitioner-hero {
    background: linear-gradient(135deg, #4A7C59 0%, #D4A574 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.practitioner-hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.practitioner-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 600;
}

.practitioner-hero h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-image-placeholder {
    margin-top: 30px;
}

.hero-image {
    max-width: 350px;
    width: 100%;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Practitioner Sections */
.practitioner-section {
    padding: 80px 20px;
}

.practitioner-section .section-content {
    max-width: 900px;
    margin: 0 auto;
}

.practitioner-section h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
}

.practitioner-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-size: 24px;
    font-weight: 700;
}

/* Contact Section */
.practitioner-contact-section {
    background: #4A7C59;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.practitioner-contact-section .section-content {
    max-width: 800px;
    margin: 0 auto;
}

.practitioner-contact-section h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 40px;
    color: white;
}

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

.contact-details p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-details a {
    color: white;
    text-decoration: underline;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-button {
    display: inline-block;
    background: white;
    color: #4A7C59;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive - Practitioner Pages */
@media (max-width: 768px) {
    .practitioner-hero h1 {
        font-size: 36px;
    }
    
    .practitioner-hero h2 {
        font-size: 22px;
    }
    
    .hero-image {
        max-width: 280px;
    }
    
    .practitioner-section h2,
    .practitioner-contact-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .practitioner-hero {
        padding: 100px 15px 60px;
    }
    
    .practitioner-hero h1 {
        font-size: 28px;
    }
    
    .practitioner-hero h2 {
        font-size: 20px;
    }
    
    .practitioner-section {
        padding: 60px 20px;
    }
}

