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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #3b82f6;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #1e40af;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1e40af;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.main-nav a:hover {
    color: #1e40af;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1e40af;
    transition: width 0.3s ease;
}

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

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

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        background-color: #f9fafb;
        border-radius: 8px;
        padding: 1rem;
    }

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

    .main-nav a {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.page-hero {
    background-color: #f3f4f6;
    padding: 4rem 0 3rem;
    text-align: center;
}

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

.page-intro {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #ffffff;
    color: #1e40af;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #1e40af;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

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

.btn-outline:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

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

section h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #4b5563;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

.feature-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Content Split */
.content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.content-text {
    flex: 1 1 400px;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.8;
}

.content-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Services */
.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.service-item h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-item p {
    color: #4b5563;
}

/* Statistics */
.statistics {
    background-color: #1e40af;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

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

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

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1 1 280px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #eff6ff;
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #4b5563;
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1 1 320px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1e40af;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
}

.value-item h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #4b5563;
}

/* FAQ */
.faq-section {
    background-color: #f9fafb;
}

.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

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

.insight-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #eff6ff;
    border-radius: 8px;
    border-left: 3px solid #1e40af;
}

.insight-card h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.insight-card p {
    color: #374151;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

.modal-content h3 {
    color: #1e40af;
    margin-bottom: 1.5rem;
}

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

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
}

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

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

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.member-role {
    font-size: 0.95rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4b5563;
    line-height: 1.6;
}

/* Principles List */
.principles-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.principle-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.principle-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    opacity: 0.3;
    min-width: 60px;
}

.principle-content h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    text-align: left;
}

.principle-content p {
    color: #4b5563;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 2rem auto 0;
    padding-left: 2rem;
    border-left: 3px solid #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1e40af;
    border: 3px solid #ffffff;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

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

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.industry-card h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #4b5563;
}

/* Trust Grid */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    text-align: center;
    padding: 1.5rem;
}

.trust-item svg {
    margin: 0 auto 1rem;
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #4b5563;
    line-height: 1.7;
}

/* Services Detail */
.service-detail {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

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

.service-title-block {
    flex: 1 1 300px;
}

.service-title-block h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    text-align: left;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #059669;
}

.service-description p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #374151;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

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

.benefit-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 1.5rem;
    background-color: #eff6ff;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #1e40af;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #374151;
}

/* Detailed Steps */
.detailed-steps {
    max-width: 900px;
    margin: 2rem auto 0;
}

.detailed-step {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1e40af;
}

.step-badge {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detailed-step h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
    text-align: left;
}

.detailed-step p {
    color: #4b5563;
    line-height: 1.7;
}

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

.contact-details {
    flex: 1 1 400px;
}

.contact-visual {
    flex: 1 1 400px;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text strong {
    display: block;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-text a {
    color: #1e40af;
}

/* Thank You */
.thank-you-hero {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-content svg {
    margin: 0 auto 2rem;
}

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

.thank-you-message {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #4b5563;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

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

.step-icon svg {
    margin: 0 auto;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #4b5563;
}

.resource-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.resource-card h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.text-link {
    color: #1e40af;
    font-weight: 600;
}

.text-link:hover {
    color: #3b82f6;
}

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

.legal-text h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    text-align: left;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #374151;
    line-height: 1.8;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #1e40af;
}

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

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1e40af;
}

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

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

.info-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #eff6ff;
    border-radius: 8px;
}

.info-item h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.info-item p {
    color: #374151;
    line-height: 1.7;
}

/* Mission Grid */
.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item {
    flex: 1 1 400px;
    padding: 2rem;
    background-color: #eff6ff;
    border-radius: 8px;
}

.mission-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    text-align: left;
}

.mission-item p {
    color: #374151;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle,
    .page-intro {
        font-size: 1.125rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    section h3 {
        font-size: 1.25rem;
    }

    .service-item,
    .value-item,
    .benefit-item,
    .insight-card,
    .industry-card,
    .trust-item {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-steps,
    .detailed-steps {
        gap: 1.5rem;
    }

    .principle-item {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .service-header {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .stats-grid {
        flex-direction: column;
    }
}