/* 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: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

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

.navigation {
    padding: 1rem 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.5rem;
    font-weight: 700;
    color: #1e40af;
}

.logo:hover {
    color: #2563eb;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: #333;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f3f4f6;
    color: #2563eb;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.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);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual img {
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        flex: 1;
    }
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 3rem 0;
    text-align: center;
}

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

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #334155;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

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

section h2 {
    font-size: 1.875rem;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

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

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }

    section h2 {
        font-size: 2.25rem;
    }
}

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 1.5rem;
}

.philosophy-item img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

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

@media (min-width: 768px) {
    .philosophy-grid {
        flex-direction: row;
    }

    .philosophy-item {
        flex: 1;
    }
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

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

@media (min-width: 768px) {
    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Stats Section */
.stats-section {
    background-color: #1e40af;
    color: #fff;
}

.stats-section h2 {
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
    }
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.benefit-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }
}

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

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.industry-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

@media (min-width: 768px) {
    .industries-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Knowledge Cards */
.knowledge-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.knowledge-card {
    background-color: #fff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.knowledge-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

@media (min-width: 768px) {
    .knowledge-cards {
        flex-direction: row;
    }

    .knowledge-card {
        flex: 1;
    }
}

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
}

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

.faq-question:hover {
    color: #2563eb;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    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: 0 0 1.25rem 0;
    color: #475569;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.trust-item img {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
}

.trust-item p {
    font-weight: 600;
    color: #1e293b;
}

@media (min-width: 768px) {
    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }
}

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

.cta-section h2 {
    color: #fff;
}

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

.cta-section .btn-primary {
    background-color: #fff;
    color: #2563eb;
}

.cta-section .btn-primary:hover {
    background-color: #f1f5f9;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.footer-column a {
    color: #cbd5e1;
}

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

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

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

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

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

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

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

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

.modal-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Story Section */
.story-section {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

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

.value-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.value-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

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

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 2rem;
    border-left: 3px solid #2563eb;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    background-color: #2563eb;
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
}

.timeline-item h3 {
    font-size: 1.125rem;
    color: #1e293b;
}

.timeline-item p {
    color: #475569;
}

/* Approach Content */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.approach-item p {
    color: #475569;
    line-height: 1.7;
}

/* Achievements List */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.achievement-item img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.achievement-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

/* Commitment Box */
.commitment-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    border-radius: 0.5rem;
}

.commitment-box p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.8;
}

.commitment-box p:last-child {
    margin-bottom: 0;
}

/* Service Detail Cards */
.service-detail-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.service-header img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

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

.service-features {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-features li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.benefit-box {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

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

.benefit-box p {
    color: #475569;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-box {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

.step-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-box p {
    color: #475569;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-box {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Comparison Table */
.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.comparison-label {
    flex: 2;
    font-weight: 600;
    color: #1e293b;
}

.comparison-us,
.comparison-other {
    flex: 1;
    text-align: center;
}

.comparison-us {
    color: #16a34a;
    font-weight: 600;
}

.comparison-other {
    color: #64748b;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.contact-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

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

.contact-card a {
    color: #2563eb;
    font-weight: 600;
}

.info-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }
}

/* Location Content */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
    color: #1e293b;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-info-box {
    background-color: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.location-info-box h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.location-info-box ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.location-info-box li {
    color: #475569;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .location-content {
        flex-direction: row;
        gap: 3rem;
    }

    .location-text {
        flex: 2;
    }

    .location-info-box {
        flex: 1;
    }
}

/* Company Details */
.company-details p {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

/* Reasons Grid */
.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.reason-item img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.reason-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.reason-item p {
    color: #475569;
}

@media (min-width: 768px) {
    .reasons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

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

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

/* Next Steps Section */
.next-steps-section {
    background-color: #f9fafb;
}

.next-steps-section .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-steps-section .step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.next-steps-section .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.next-steps-section .step-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.next-steps-section .step-item p {
    color: #475569;
}

@media (min-width: 768px) {
    .next-steps-section .steps-grid {
        flex-direction: row;
    }

    .next-steps-section .step-item {
        flex: 1;
    }
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
}

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

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

.text-link {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.text-link:hover {
    color: #1e40af;
}

@media (min-width: 768px) {
    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #1e293b;
    text-align: left;
}

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

.legal-text h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #1e293b;
}

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

.legal-text ul,
.legal-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style-position: outside;
}

.legal-text ul li {
    list-style-type: disc;
}

.legal-text ol li {
    list-style-type: decimal;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

.why-content p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

/* Team Description */
.team-description {
    max-width: 900px;
    margin: 2rem auto 0;
}

.team-description p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}