/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #263238;
    background: linear-gradient(135deg, #00897B 0%, #FF6F61 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #00897B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #FF6F61;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #263238;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00897B;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD54F;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #263238;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #FFD54F;
    color: #263238;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.cta-button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: #E0F2F1;
}

.section:nth-child(odd) {
    background: rgba(255, 255, 255, 0.9);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #263238;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00897B, #FFD54F);
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #FFD54F;
}

.service-card h3 {
    color: #00897B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: #FF6F61;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #263238;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0F2F1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00897B;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.submit-button {
    background: linear-gradient(135deg, #00897B, #FF6F61);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* FAQ Section - Pure CSS */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-toggle {
    display: none;
}

.faq-question {
    background: #E0F2F1;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    display: block;
    position: relative;
    color: #263238;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #00897B;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #B2DFDB;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background: white;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #263238;
}

/* When checkbox is checked */
.faq-toggle:checked + .faq-question {
    background: #00897B;
    color: white;
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: white;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #00897B;
}

/* Footer */
.footer {
    background: #263238;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD54F;
}

.footer-section p,
.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #FFD54F;
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #37474F;
    padding-top: 1rem;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 50, 56, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content a {
    color: #FFD54F;
}

.cookie-accept {
    background: #FFD54F;
    color: #263238;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #FFC107;
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD54F;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
    color: #00897B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    background: linear-gradient(135deg, #00897B, #FF6F61);
    color: white;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Contact Section Styles */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #FFD54F;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #00897B;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    margin: 0;
    line-height: 1.6;
}

.contact-card a {
    color: #FF6F61;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #00897B;
}

.contact-map-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.google-map-embed iframe {
    transition: all 0.3s ease;
}

.google-map-embed:hover iframe {
    transform: scale(1.02);
}

/* Form Error Styles */
.form-errors {
    background: #FFE5E5;
    border: 2px solid #FF6B6B;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    color: #C92A2A;
}

.form-errors h4 {
    margin-bottom: 1rem;
    color: #C92A2A;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.5rem;
}

.form-errors li {
    margin-bottom: 0.5rem;
}

/* Form Debug Styles */
.form-debug {
    background: #E3F2FD;
    border: 2px solid #2196F3;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    color: #0D47A1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.form-debug h4 {
    margin-bottom: 1rem;
    color: #1976D2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-debug ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.form-debug li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.form-debug small {
    color: #1565C0;
    font-style: italic;
}

/* Thanks Page Styles */
.thanks-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, rgba(255, 111, 97, 0.1) 100%);
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.thanks-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.thanks-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00897B, #FF6F61);
    z-index: -1;
    margin: -2px;
    border-radius: 25px;
}

.thanks-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00897B, #FFD54F, #FF6F61);
    border-radius: 25px 25px 0 0;
}

.thanks-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #00897B;
    background: #E0F2F1;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

.thanks-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid #FFD54F;
    border-radius: 50%;
    opacity: 0.7;
    animation: ringPulse 3s infinite;
}

.thanks-content {
    text-align: center;
}

.thanks-title {
    font-size: 2.5rem;
    color: #263238;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #00897B;
    margin-bottom: 2rem;
    font-weight: 500;
}

.thanks-message {
    margin-bottom: 2rem;
}

.message-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 15px;
    border-left: 4px solid #FFD54F;
    text-align: left;
    transition: all 0.3s ease;
}

.message-item:hover {
    background: #E0F2F1;
    transform: translateX(5px);
}

.message-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.message-item p {
    margin: 0;
    line-height: 1.6;
    color: #263238;
}

.thanks-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #E0F2F1;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: #00897B;
    box-shadow: 0 5px 15px rgba(0, 137, 123, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-option a {
    color: #263238;
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    color: #00897B;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00897B, #FF6F61);
    color: white;
    border: none;
}

.cta-button.secondary {
    background: white;
    color: #00897B;
    border: 2px solid #00897B;
}

.cta-button.secondary:hover {
    background: #00897B;
    color: white;
}

.thanks-footer {
    border-top: 1px solid #E0E0E0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.reference-number {
    font-family: 'Courier New', monospace;
    background: #F5F5F5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    color: #00897B;
}

/* Animations for Thanks Page */
@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    /* Contact Section Mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-map-container {
        padding: 1.5rem;
    }
    
    .google-map-embed iframe {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .form-container {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    /* About Section Small Mobile */
    .about-card {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-image img {
        height: 200px;
    }
    
    /* Contact Section Small Mobile */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-map-container {
        padding: 1rem;
    }
    
    .google-map-embed iframe {
        height: 200px;
    }
    
    /* Form Errors Mobile */
    .form-errors {
        margin: 0 10px 1rem;
        padding: 1rem;
    }
    
    /* Form Debug Mobile */
    .form-debug {
        margin: 0 10px 1rem;
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    /* Thanks Page Mobile */
    .thanks-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
    
    .thanks-subtitle {
        font-size: 1.1rem;
    }
    
    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .thanks-icon-ring {
        width: 100px;
        height: 100px;
    }
    
    .message-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .thanks-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-option {
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-question::after {
        right: 1rem;
        font-size: 1.3rem;
    }
    
    .faq-toggle:checked ~ .faq-answer {
        max-height: 300px;
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
