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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d47a1;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.logo:hover {
    color: #0d47a1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a73e8;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a73e8;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-top: 1px solid #eee;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }
}

/* Page Hero */
.page-hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #1a73e8;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d47a1;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

.btn-secondary:hover {
    background-color: #1a73e8;
    color: #fff;
}

.hero .btn-secondary {
    color: #fff;
    border-color: #fff;
}

.hero .btn-secondary:hover {
    background-color: #fff;
    color: #1a73e8;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

/* Benefits Grid */
.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-light .benefit-card {
    background-color: #fff;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    border-color: #1a73e8;
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #1a73e8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 1rem;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    min-width: 80px;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-number {
        min-width: auto;
    }
}

/* Industries List */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.industry-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.industry-item p {
    color: #666;
}

/* Philosophy Points */
.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.philosophy-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.philosophy-item p {
    color: #666;
}

/* Insights Grid */
.insights-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.insight-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    color: #1a73e8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem;
    color: #666;
    line-height: 1.7;
    background-color: #f8f9fa;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Grid */
.team-intro {
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.8;
}

.team-intro p {
    margin-bottom: 1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        min-width: auto;
    }
}

/* Achievements Grid */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achievement-item h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.achievement-stat {
    font-size: 3rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.achievement-item p {
    color: #666;
    line-height: 1.7;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detailed {
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    background-color: #f8f9fa;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-tagline {
    color: #666;
    font-size: 1.1rem;
}

.service-price {
    text-align: right;
    min-width: 150px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
}

.service-body {
    padding: 2rem;
}

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

.service-body h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-body li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-duration {
    font-weight: 600;
    color: #1a73e8;
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Steps Horizontal */
.steps-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

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

/* Contact Grid */
.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-main {
    flex: 2;
    min-width: 300px;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.contact-detail p {
    color: #666;
    line-height: 1.7;
}

.contact-detail a {
    color: #1a73e8;
    font-weight: 600;
}

.contact-info-box {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-box h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.contact-info-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-info-box ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.contact-info-box li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Company Info Grid */
.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a73e8;
}

.info-item p {
    color: #666;
}

/* Thank You Section */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.thank-you-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Next Steps Grid */
.next-steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.next-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.next-step-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.legal-text h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
}

.legal-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #333;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    color: #666;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a4f63;
    color: #bbb;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

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

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option span {
    font-weight: 600;
    color: #333;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Utility Classes */
.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Accessibility */
:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

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

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    .section {
        page-break-inside: avoid;
    }
}