/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fcfaf8;
    overflow-x: hidden;
}

/* Design System Variables based on design.json */
:root {
    /* Colors from design.json */
    --primary-color: #2E3A59;
    --secondary-color: #F8F9FA;
    --accent-color: #FF6B35;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    --background-alt: #FFFFFF;
    --background-main: #fcfaf8;
    
    /* Typography */
    --font-family: 'Open Sans', sans-serif;
    
    /* Spacing System */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-large: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 24px;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 280px;
}

.brand-icon {
    background-color: var(--accent-color);
    color: white;
    padding: var(--space-sm);
    border-radius: 50%;
    font-size: 1.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(46, 58, 89, 0.4), rgba(46, 58, 89, 0.7));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/Hero Background.png') center/cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: var(--space-4xl) 0;
    background-color: var(--background-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
}

.feature-item .material-symbols-outlined {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-lg);
}

/* Process Section */
.process-section {
    padding: var(--space-4xl) 0;
    background-color: var(--secondary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.process-step {
    background-color: var(--background-alt);
    padding: var(--space-xl);
    border-radius: var(--border-radius-large);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.process-step p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section {
    padding: var(--space-4xl) 0;
    background-color: var(--background-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-video {
    width: 100%;
    height: 250px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-video:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Video Section */
.video-section {
    padding: var(--space-4xl) 0;
    background-color: var(--secondary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.video-card {
    background-color: var(--background-alt);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical videos */
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3,
.video-card p {
    padding: 0 var(--space-lg);
}

.video-card h3 {
    padding-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.video-card p {
    padding-bottom: var(--space-lg);
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Services Section */
.services-section {
    padding: var(--space-4xl) 0;
    background-color: var(--background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.service-card {
    background-color: var(--background-alt);
    padding: var(--space-xl);
    border-radius: var(--border-radius-large);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.target-audience {
    margin-top: var(--space-3xl);
    text-align: center;
}

.target-audience h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.target-audience p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: var(--space-2xl) auto 0;
}

.testimonial-card {
    background-color: var(--background-primary);
    border-radius: var(--border-radius-large);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary-color);
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-color);
}

.testimonial-quote {
    margin: 0;
    flex: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--space-lg);
}

.author-info {
    margin-left: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 1rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0.125rem 0 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-xl);
    }
    
    .testimonial-card {
        padding: var(--space-lg);
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

.video-caption {
    text-align: center;
    margin-top: var(--space-md);
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--space-4xl) 0;
    background-color: var(--background-alt);
}

/* GDPR Privacy Notice */
.privacy-notice {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-notice p {
    margin: 0;
    color: var(--text-secondary);
}

.privacy-notice a {
    color: var(--accent-color);
    text-decoration: underline;
}

.privacy-notice a:hover {
    color: #e55a2b;
}

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

.contact-form {
    margin-top: var(--space-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-alt);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-success,
.form-error {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    text-align: center;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* GDPR Consent Checkbox */
.consent-group {
    margin-bottom: var(--space-xl);
}

.privacy-notice-inline {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.privacy-notice-inline p {
    margin: 0;
    color: var(--text-secondary);
}

.privacy-notice-inline a {
    color: var(--accent-color);
    text-decoration: underline;
}

.privacy-notice-inline a:hover {
    color: #e55a2b;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.consent-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.consent-text {
    color: var(--text-secondary);
}

.consent-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.consent-text a:hover {
    color: #e55a2b;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    z-index: 10000;
    padding: var(--space-lg);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--accent-color);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-text h3 {
    color: white;
    margin: 0 0 var(--space-sm) 0;
    font-size: 1.125rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #e55a2b;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-size: 0.875rem;
    padding: var(--space-sm) 0;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: white;
}

/* Final CTA */
.final-cta {
    padding: var(--space-4xl) 0;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: white;
}

.final-cta .cta-button {
    background-color: var(--primary-color);
    margin-top: var(--space-lg);
}

.final-cta .cta-button:hover {
    background-color: #1e2a3d;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-2xl) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-brand {
    margin-bottom: var(--space-md);
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 280px;
    filter: brightness(0) invert(1); /* Makes the logo white for dark footer */
}

.footer-info h3 {
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        z-index: 9999;
        transition: all 0.3s ease;
        transform: translateX(-100%);
    }
    
    .main-nav.active {
        display: flex;
        transform: translateX(0);
    }
    
    .main-nav .nav-link {
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        padding: var(--space-md);
        transition: color 0.3s ease;
    }
    
    .main-nav .nav-link:hover {
        color: var(--accent-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 10000;
        position: relative;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-menu-toggle span {
        transition: all 0.3s ease;
    }
    
    .nav-open {
        overflow: hidden;
    }
    
    .cta-button {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-image {
        order: -1;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Cookie banner responsive */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-accept,
    .btn-reject {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .process-step {
        padding: var(--space-lg);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card {
        min-width: unset;
    }
}

/* Smooth scroll padding for fixed header */
html {
    scroll-padding-top: 70px;
}

/* Loading and interaction states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus styles for accessibility */
.cta-button:focus,
.submit-button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .final-cta,
    .contact-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-background {
        display: none;
    }
}