/* Base Reset and Variables */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-purple: #8b5cf6;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-border: #e2e8f0;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

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

/* Header and Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-primary);
}

.logo svg {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    list-style: none;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

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

.nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

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

    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

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

.hero h1 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.hero-visual {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 3rem;
    }

    .hero-visual {
        display: block;
        flex: 1;
        min-width: 300px;
        max-width: 400px;
    }

    .hero-illustration {
        width: 100%;
        height: auto;
    }
}

/* Page Hero */
.page-hero {
    padding: 3rem 1rem;
    background: var(--color-bg-alt);
    text-align: center;
}

.page-intro {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-intro {
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 2rem;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--color-bg);
}

.philosophy-content {
    margin-bottom: 2rem;
}

.philosophy-content h2 {
    margin-bottom: 1rem;
}

.philosophy-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.value-card svg {
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .philosophy-section .container {
        display: flex;
        gap: 3rem;
        align-items: flex-start;
    }

    .philosophy-content {
        flex: 1;
        margin-bottom: 0;
    }

    .philosophy-values {
        flex: 1;
    }
}

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

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

.service-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border-left: 4px solid var(--color-primary);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--color-primary);
}

.service-link:hover {
    text-decoration: underline;
}

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

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

/* Process Section */
.process-section {
    background: var(--color-bg);
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50%;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-light);
}

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

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

.testimonial-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.testimonial-card footer {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card footer span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

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

/* Industries Section */
.industries-section {
    background: var(--color-bg);
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-weight: 500;
}

/* Insights Section */
.insights-section {
    background: var(--color-bg-alt);
}

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

.insight-card {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.insight-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.insight-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.insight-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

    .insight-card {
        flex: 1;
    }
}

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

.faq-list {
    margin-top: 2rem;
    max-width: 800px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-alt);
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--color-border);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-light);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 1rem 1.5rem;
}

.faq-answer p {
    color: var(--color-text-light);
}

/* Milestones / Timeline */
.milestones-section {
    background: var(--color-bg-alt);
}

.timeline {
    margin-top: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.timeline-content h3 {
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    background: var(--color-primary);
    color: white;
    text-align: center;
}

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

.cta-content p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--color-primary);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-button:hover {
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Story Section */
.story-section {
    background: var(--color-bg-alt);
}

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

.story-content h2 {
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.story-visual {
    display: none;
}

@media (min-width: 768px) {
    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-content {
        flex: 1;
    }

    .story-visual {
        display: block;
        flex: 1;
        max-width: 300px;
    }

    .story-illustration {
        width: 100%;
        height: auto;
    }
}

/* Team Section */
.team-section {
    background: var(--color-bg);
}

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

.team-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

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

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Values Section */
.values-section {
    background: var(--color-bg-alt);
}

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

.value-block {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-block h3 {
    margin-bottom: 0.75rem;
}

.value-block p {
    color: var(--color-text-light);
}

/* Capabilities Section */
.capabilities-section {
    background: var(--color-bg);
}

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

.capability-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.capability-card h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}

.capability-card ul {
    list-style: none;
}

.capability-card li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.capability-card li:last-child {
    border-bottom: none;
}

/* Certifications Section */
.certifications-section {
    background: var(--color-bg-alt);
}

.certifications-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.certifications-text h2 {
    margin-bottom: 1rem;
}

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

.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.certification-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.certification-badge {
    flex-shrink: 0;
}

.certification-info h3 {
    margin-bottom: 0.25rem;
}

.certification-info p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .certifications-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .certifications-text,
    .certifications-list {
        flex: 1;
    }
}

/* Partners Section */
.partners-section {
    background: var(--color-bg);
}

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

.partner-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.partner-card h3 {
    margin-bottom: 0.75rem;
}

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

/* Services Page */
.services-overview {
    background: var(--color-bg);
}

.services-intro {
    margin-bottom: 3rem;
}

.services-intro h2 {
    margin-bottom: 0.75rem;
}

.services-intro p {
    color: var(--color-text-light);
}

.service-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-card {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.service-header h4 {
    color: var(--color-text);
}

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

.service-detail-card > p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    background: var(--color-bg);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Service Benefits */
.service-benefits {
    background: var(--color-bg-alt);
}

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

.benefit-card {
    flex: 1;
    min-width: 220px;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

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

.benefit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Process Timeline */
.process-timeline {
    margin-top: 2rem;
}

.process-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-marker {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
}

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

.process-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Comparison Table */
.comparison-section {
    background: var(--color-bg-alt);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--color-bg-alt);
}

/* Contact Page */
.contact-main {
    background: var(--color-bg);
}

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

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

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

.contact-card {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card address {
    font-style: normal;
    color: var(--color-text);
    line-height: 1.8;
}

.contact-card p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-table td:first-child {
    color: var(--color-text);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text-light);
}

.hours-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.company-description {
    margin-bottom: 2rem;
}

.company-description h2 {
    margin-bottom: 1rem;
}

.company-description p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.directions-section h2 {
    margin-bottom: 1.5rem;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-method h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.direction-method p {
    color: var(--color-text-light);
}

/* Company Info Section */
.company-info-section {
    background: var(--color-bg-alt);
}

.company-info-section h2 {
    margin-bottom: 1.5rem;
}

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.info-block {
    flex: 1;
    min-width: 200px;
    background: var(--color-bg);
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.info-block h3 {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--color-text);
}

/* Additional Info Panels */
.additional-info {
    background: var(--color-bg);
}

.info-panels {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.info-panel {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.info-panel h3 {
    margin-bottom: 0.75rem;
}

.info-panel p {
    color: var(--color-text-light);
}

/* Thank You Page */
.thank-you-section {
    background: var(--color-bg-alt);
    padding: 4rem 1rem;
}

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

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

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.next-steps {
    text-align: left;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.step-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.step-text p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg);
    color: var(--color-text);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition);
}

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

.meanwhile-section {
    background: var(--color-bg);
}

.meanwhile-section h2 {
    margin-bottom: 1.5rem;
}

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meanwhile-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.meanwhile-card h3 {
    margin-bottom: 0.5rem;
}

.meanwhile-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-hero {
    padding: 3rem 1rem;
    background: var(--color-bg-alt);
}

.legal-hero h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
}

.legal-content {
    padding: 3rem 0;
    background: var(--color-bg);
}

.legal-text {
    max-width: 800px;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

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

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.legal-text li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.legal-address {
    font-style: normal;
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    line-height: 1.8;
}

.gdpr-right {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.gdpr-right h3 {
    margin-top: 0;
    color: var(--color-text);
}

.cookie-category {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.cookie-category h3 {
    margin-top: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-border);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

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

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: white;
}

.footer-brand p {
    font-size: 0.9375rem;
}

.footer-nav h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-legal a {
    color: #94a3b8;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    flex: 1;
}

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

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

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

.cookie-btn-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-btn-reject {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.cookie-btn-reject:hover {
    background: var(--color-border);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

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

.cookie-btn-save {
    background: var(--color-secondary);
    color: white;
    width: 100%;
}

.cookie-btn-save:hover {
    background: #0d9668;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.cookie-modal-content {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 0;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: 1.5rem;
}

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

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    margin-bottom: 0.5rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.cookie-option p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-left: 2rem;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}

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

    body {
        font-size: 12pt;
    }

    a {
        color: inherit;
        text-decoration: underline;
    }
}
