/* 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: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px 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;
    position: relative;
}

.nav-brand {
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    list-style: none;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

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

    .nav-menu a {
        font-size: 1rem;
        padding: 0.25rem 0;
    }
}

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

.section-alt {
    background-color: #f8fafc;
}

.section-dark {
    background-color: #1e293b;
    color: #ffffff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #ffffff;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

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

    .hero h1 {
        font-size: 3rem;
    }

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.95;
}

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

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

    .lead {
        font-size: 1.25rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1e293b;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.375rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

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

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

.hero .btn-secondary:hover {
    background-color: #ffffff;
    color: #2563eb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* Trust Bar */
.trust-bar {
    background-color: #ffffff;
    padding: 40px 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon img {
    width: 48px;
    height: 48px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
}

.trust-text span {
    font-size: 0.875rem;
    color: #64748b;
}

@media (min-width: 768px) {
    .trust-items {
        gap: 3rem;
    }
}

/* Content Blocks */
.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.content-block {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.content-block h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

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

    .content-block {
        flex: 1;
    }
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

.feature-icon img {
    width: 64px;
    height: 64px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

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

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

@media (min-width: 1024px) {
    .feature-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* Services Highlight */
.services-highlight {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.services-highlight-content {
    flex: 1;
}

.services-list {
    list-style: none;
    margin: 2rem 0;
}

.services-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.25rem;
}

.services-highlight-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-highlight-visual img {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .services-highlight {
        flex-direction: row;
        gap: 4rem;
    }
}

/* Industries */
.industries {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    text-align: center;
    padding: 2rem;
}

.industry-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.industry-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.industry-item p {
    color: rgba(255, 255, 255, 0.9);
}

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

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

@media (min-width: 1024px) {
    .industry-item {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

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

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

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-content h3 {
    margin-bottom: 0.75rem;
}

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

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

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
}

.testimonial-author strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #64748b;
}

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

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

/* Tips Grid */
.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #2563eb;
}

.tip-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

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

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

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

.faq {
    max-width: 900px;
    margin: 3rem 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.1);
}

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

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
    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: 1000px;
}

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

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

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.cta-box .btn-primary {
    background-color: #ffffff;
    color: #2563eb;
    border-color: #ffffff;
}

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

/* Services Catalog */
.services-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
}

.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

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

.service-title {
    flex: 1;
}

.service-title h2 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

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

.service-body {
    padding: 2rem;
}

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

.service-details {
    list-style: none;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #475569;
}

.service-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.25rem;
}

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

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

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 100%;
    }

    .service-header {
        padding: 2.5rem;
    }

    .service-body {
        padding: 2.5rem;
    }
}

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

.benefit-box {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-box img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.benefit-box h3 {
    margin-bottom: 1rem;
}

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

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

@media (min-width: 1024px) {
    .benefit-box {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* Service Process */
.service-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.process-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-item h3 {
    margin-bottom: 0.75rem;
}

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

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

@media (min-width: 1024px) {
    .process-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

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

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon img {
    width: 48px;
    height: 48px;
}

.contact-details h3 {
    margin-bottom: 0.75rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details a {
    color: #2563eb;
    font-weight: 500;
}

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

.contact-about {
    flex: 1;
}

.contact-certifications {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.contact-certifications h3 {
    margin-bottom: 1rem;
}

.contact-certifications ul {
    list-style: none;
}

.contact-certifications li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.contact-certifications li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }
}

/* Directions */
.directions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-method {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.direction-method h3 {
    margin-bottom: 1rem;
    color: #2563eb;
}

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

    .direction-method {
        flex: 1;
    }
}

/* Service Area */
.service-area {
    max-width: 900px;
    margin: 0 auto;
}

.service-area > p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.coverage-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.coverage-item h3 {
    margin-bottom: 0.75rem;
    color: #1e293b;
}

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

    .coverage-item {
        flex: 1;
    }
}

/* Company Info */
.company-info {
    background-color: #f8fafc;
}

.registry-info {
    max-width: 700px;
    margin: 2rem auto 0;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registry-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.registry-item:last-child {
    border-bottom: none;
}

.registry-item strong {
    color: #64748b;
    font-weight: 600;
}

.registry-item span {
    color: #1e293b;
    font-weight: 500;
    text-align: right;
}

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

    .registry-item span {
        text-align: left;
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.thank-you-next {
    margin: 3rem 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .thank-you-actions {
        flex-direction: row;
    }

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

    .next-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }
}

.urgent-notice {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.urgent-notice h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.urgent-notice a {
    font-weight: 600;
}

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

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

.legal-update {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #334155;
}

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

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

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #475569;
}

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

/* About Page */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.philosophy-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.philosophy-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

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

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

/* Team */
.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
}

.team-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-value {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.team-value h3 {
    margin-bottom: 1rem;
}

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

    .team-value {
        flex: 1;
    }
}

/* Milestones */
.milestones {
    max-width: 900px;
    margin: 3rem auto 0;
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.milestone:last-child {
    border-bottom: none;
}

.milestone-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
}

.milestone-content h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.milestone-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .milestone {
        flex-direction: column;
        gap: 1rem;
    }

    .milestone-year {
        width: auto;
        font-size: 1.75rem;
    }
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

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

.benefit-content h3 {
    margin-bottom: 0.75rem;
}

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

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

/* Principles */
.principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.principle {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.principle h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .principles {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* Stats Highlight */
.stats-highlight {
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
}

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

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

@media (min-width: 1024px) {
    .stat-box {
        flex: 1 1 calc(25% - 1.5rem);
    }
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

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

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

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

.footer-section p {
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

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

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

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

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

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

    .footer-section {
        flex: 1;
    }
}

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

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

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

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

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

/* 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: 3000;
    padding: 20px;
}

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

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

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

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

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

.cookie-option input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

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

.cookie-option span {
    line-height: 1.6;
    color: #475569;
}

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

@media (min-width: 640px) {
    .cookie-modal-content {
        padding: 3rem;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Accessibility */
.nav-toggle:focus,
.btn:focus,
.faq-question:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

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