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

:root {
    --primary-color: #2c5282;
    --primary-dark: #1a365d;
    --secondary-color: #e2e8f0;
    --accent-color: #d97706;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --bg-color: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-position: inside;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.site-header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 15px 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    overflow-y: auto;
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Grid */
.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.intro-visual img {
    max-width: 100%;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-light);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Philosophy Section */
.philosophy-section {
    background-color: white;
}

.philosophy-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.philosophy-point {
    text-align: center;
}

.philosophy-point img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.philosophy-point h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.philosophy-point p {
    line-height: 1.7;
    color: var(--text-light);
}

/* Services Cards */
.services-highlight {
    background-color: var(--bg-light);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
}

/* Industries Section */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-item {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.industry-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.industry-item p {
    color: var(--text-light);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
}

.benefit-item img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    line-height: 1.7;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.value-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-intro-text {
    max-width: 900px;
    margin: 0 auto 40px;
}

.team-intro-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.team-stat {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

/* Services Detail */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-info h2 {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details-list h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-details-list ul {
    margin-bottom: 20px;
}

.service-details-list li {
    margin-bottom: 8px;
    padding-left: 8px;
    line-height: 1.6;
    color: var(--text-light);
}

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

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.directions-list {
    list-style: none;
    margin: 15px 0;
}

.directions-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.office-note {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-box {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.reason-box h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.reason-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.commitment-box p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.steps-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-info {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.explore-card {
    display: block;
    padding: 25px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.explore-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.explore-card p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    padding: 40px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    text-align: left;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul {
    margin: 15px 0 25px 20px;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-text a {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: var(--text-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

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

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 25px;
}

.cookie-preferences {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cookie-pref-item label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-pref-item input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-pref-item span {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-pref-item p {
    margin-top: 8px;
    margin-left: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Tablet */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 5px;
        overflow-y: visible;
    }

    .nav-menu a {
        padding: 8px 15px;
    }

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text,
    .intro-visual {
        flex: 1;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

    .philosophy-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-point {
        flex: 1;
        min-width: 250px;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .industries-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 1;
        min-width: 300px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 280px;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: 280px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 280px;
    }

    .team-stats {
        flex-direction: row;
    }

    .team-stat {
        flex: 1;
    }

    .service-detail {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-icon {
        flex-shrink: 0;
    }

    .service-info {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
        gap: 50px;
    }

    .contact-details,
    .office-info {
        flex: 1;
    }

    .reasons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-box {
        flex: 1;
        min-width: 300px;
    }

    .steps-info {
        flex-direction: row;
    }

    .step-info {
        flex: 1;
    }

    .explore-links {
        flex-direction: row;
    }

    .explore-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
        margin-right: 20px;
    }

    .cookie-actions {
        flex-shrink: 0;
    }

    .info-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1;
        min-width: 280px;
    }
}

/* Responsive Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    section {
        padding: 80px 0;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .philosophy-points {
        flex-wrap: nowrap;
    }

    .services-cards {
        flex-wrap: nowrap;
    }

    .industries-list {
        flex-wrap: nowrap;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .values-grid {
        flex-wrap: nowrap;
    }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .cookie-modal,
    .cta-section {
        display: none;
    }
}