/* Base Styles */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #dbeafe;
    --color-secondary: #10b981;
    --color-secondary-light: #d1fae5;
    --color-accent: #f59e0b;
    --color-accent-light: #fef3c7;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-dark: #f1f5f9;
    --color-border: #e5e7eb;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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 25px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

li { margin-bottom: 0.5rem; }

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-text-light);
    color: var(--color-text);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

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

.main-nav {
    padding: 16px 0;
}

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

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

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

.logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

.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 {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.legal-hero {
    padding: 40px 0;
}

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

.legal-hero p {
    font-size: 1rem;
}

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

.philosophy-card {
    background: var(--color-accent-light);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-icon {
    margin-bottom: 24px;
}

.philosophy-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--color-primary);
}

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

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.featured-categories h2 {
    text-align: center;
    margin-bottom: 48px;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.category-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 260px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.25rem;
}

.category-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.process-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    position: relative;
    padding-left: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar svg {
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.industries-section h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg-alt);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
}

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

.insights-header {
    margin-bottom: 48px;
}

.insights-header h2 {
    text-align: center;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.insight-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.insight-card.featured {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg) 100%);
}

.insight-card.featured .insight-icon {
    flex-shrink: 0;
}

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

.insight-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.insight-icon {
    margin-bottom: 16px;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-answer.active {
    display: block;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-content {
    text-align: center;
    color: #fff;
}

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

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Page */
.services-overview {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    margin-bottom: 20px;
}

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

.service-card > p {
    color: var(--color-text-light);
    flex-grow: 1;
}

.service-price {
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.service-price .price-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-left: 4px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.benefit-item {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 16px;
}

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

.benefit-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.comparison-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

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

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

.comparison-table th {
    background: var(--color-bg-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td.check {
    color: var(--color-secondary);
}

/* About Page Styles */
.story-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

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

.story-visual {
    flex: 1;
}

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

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

.values-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.125rem;
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.team-section h2 {
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

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

.team-member p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.milestones-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    gap: 32px;
    padding-bottom: 32px;
    position: relative;
}

.milestone:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 52px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.milestone-year {
    flex-shrink: 0;
    width: 72px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.milestone-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.milestone-content p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content > h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.approach-content > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.approach-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-feature {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 240px;
    display: flex;
    gap: 20px;
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
}

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

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
}

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

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

.contact-link {
    display: inline-block;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
}

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

.company-info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.company-description {
    flex: 1 1 60%;
    min-width: 300px;
}

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

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

.company-details {
    flex: 1 1 35%;
    min-width: 280px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
}

.company-details h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.info-list {
    margin: 0;
}

.info-list dt {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.info-list dd {
    color: var(--color-text-light);
    margin-bottom: 16px;
    margin-left: 0;
}

/* Directions Section */
.directions-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}

.directions-text {
    flex: 1 1 55%;
    min-width: 300px;
}

.directions-text h3 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 0.75rem;
}

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

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

.directions-visual {
    flex: 1 1 40%;
    min-width: 280px;
}

.map-illustration {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Topics Section */
.topics-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.topics-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.topic-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 220px;
    background: var(--color-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.topic-icon {
    margin-bottom: 16px;
}

.topic-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.topic-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background: var(--color-bg);
}

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

.thank-you-icon {
    margin-bottom: 32px;
}

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

.thank-you-content > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.suggestions-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.suggestions-section h2 {
    text-align: center;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.suggestion-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 260px;
    background: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.suggestion-icon {
    margin-bottom: 16px;
}

.suggestion-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.suggestion-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0 80px;
    background: var(--color-bg);
}

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

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 1rem;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

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

.legal-text h3 {
    font-size: 1.125rem;
    margin-top: 32px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

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

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

.cookie-table td {
    color: var(--color-text-light);
}

/* Footer */
.site-footer {
    background: var(--color-text);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    flex: 1 1 40%;
    min-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: #fff;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    flex: 1 1 20%;
    min-width: 150px;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner[hidden] {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1 1 60%;
    min-width: 280px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    white-space: nowrap;
}

.cookie-actions .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.cookie-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

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

.cookie-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 4px;
}

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

.cookie-modal-content h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.cookie-options {
    margin-bottom: 24px;
}

.cookie-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-option-header span,
.cookie-option-header label {
    font-weight: 600;
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.cookie-option p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-modal-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

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

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .story-content {
        flex-direction: column;
    }

    .company-info-content {
        flex-direction: column;
    }

    .insight-card.featured {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

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

    .hero p {
        font-size: 1.125rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .milestones-timeline {
        padding-left: 0;
    }

    .milestone {
        flex-direction: column;
        gap: 16px;
    }

    .milestone::after {
        display: none;
    }

    .directions-content {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .btn {
        padding: 10px 20px;
        width: 100%;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .page-hero {
        padding: 40px 0;
    }

    section {
        padding: 60px 0;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
}
