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

:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-accent: #4299e1;
    --color-accent-light: #ebf8ff;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --color-warning: #f6ad55;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    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 20px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }

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

li { margin-bottom: 0.5em; }

address {
    font-style: normal;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

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

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    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-primary);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

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

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

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

.nav-menu a.active {
    color: var(--color-accent);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    left: 0;
    transition: transform var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.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-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-label.center {
    display: block;
    text-align: center;
}

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

/* Trust Indicators */
.trust-indicators {
    padding: 48px 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

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

.philosophy-text {
    flex: 1;
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

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

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

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

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

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

.service-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), transform var(--transition);
}

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

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

.service-card h3 {
    margin-bottom: 12px;
}

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

.services-cta {
    text-align: center;
}

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

.process h2,
.process .section-label {
    color: #fff;
}

.process .section-label {
    opacity: 0.8;
}

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

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.process-step h3 {
    color: #fff;
    margin-bottom: 12px;
}

.process-step p {
    opacity: 0.9;
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial cite {
    font-weight: 600;
    color: var(--color-primary);
}

/* Industries */
.industries {
    padding: 80px 0;
}

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

.industry-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 24px;
}

.industry-item svg {
    margin-bottom: 16px;
}

.industry-item h4 {
    margin-bottom: 8px;
}

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

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

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

.insights-text {
    flex: 1;
}

.insight-block {
    margin-bottom: 24px;
    padding: 20px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.insight-block h4 {
    margin-bottom: 8px;
}

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

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

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

/* FAQ */
.faq {
    padding: 80px 0;
}

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

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

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

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

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

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

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

.faq-answer {
    padding: 0 24px 20px;
}

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

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

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--color-bg-alt);
}

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

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

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    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;
    min-width: 150px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 16px;
}

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

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

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

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-contact address {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

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

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

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

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

.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 {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
    color: var(--color-text-light);
}

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

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

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

.cookie-modal-content {
    background-color: 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: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

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

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

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

.cookie-modal-body {
    padding: 24px;
}

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

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
}

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

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

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
    text-align: right;
}

/* About Page */
.story {
    padding: 80px 0;
}

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

.story-text {
    flex: 1;
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.value-card h3 {
    margin-bottom: 12px;
}

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

/* Team */
.team {
    padding: 80px 0;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 24px;
}

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

.team-member h4 {
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
}

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

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

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

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

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-marker {
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-accent);
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    right: -17px;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--color-bg-alt);
}

.timeline-content {
    flex: 1;
    padding-left: 16px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

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

/* Benefits */
.benefits {
    padding: 80px 0;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

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

.benefit-content h4 {
    margin-bottom: 8px;
}

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

/* Testimonials Page */
.testimonials-page {
    padding: 80px 0;
}

.testimonials-detailed {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-detailed {
    padding: 32px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-detailed > p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-detailed footer {
    display: flex;
    flex-direction: column;
}

.testimonial-detailed cite {
    font-weight: 600;
    color: var(--color-primary);
}

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

/* Services Page */
.services-intro {
    padding: 40px 0;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 40px 0 80px;
}

.service-detail-card {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 32px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
}

.service-detail-card.highlighted {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.service-detail-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
}

.service-detail-card.featured h2,
.service-detail-card.featured h3 {
    color: #fff;
}

.service-detail-card.featured p {
    color: rgba(255,255,255,0.9);
}

.service-detail-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--color-accent);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-detail-badge.featured-badge {
    background-color: var(--color-warning);
    color: var(--color-primary);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.service-detail-title {
    flex: 1;
}

.service-detail-title h2 {
    margin-bottom: 4px;
}

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

.service-detail-card.featured .service-price {
    color: var(--color-warning);
}

.service-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.service-detail-card.featured .service-price small {
    color: rgba(255,255,255,0.6);
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.service-includes li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-card.featured .service-includes li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.service-includes li:last-child {
    border-bottom: none;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background-color: var(--color-success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

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

.comparison-table-wrapper {
    max-width: 600px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: 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: left;
    border-bottom: 1px solid var(--color-border);
}

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

.comparison-table th:last-child {
    background-color: var(--color-accent);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table .total-row {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

.comparison-table .total-row td:last-child {
    color: var(--color-accent);
}

/* Process Timeline */
.process-services {
    padding: 80px 0;
}

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

.process-timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.process-step-indicator {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step-indicator span {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-step-content h3 {
    margin-bottom: 8px;
}

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

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

/* Benefits Services */
.benefits-services {
    padding: 80px 0;
}

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

.benefits-services-text {
    flex: 1;
}

.benefit-services-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon-small {
    flex-shrink: 0;
}

.benefit-services-item h4 {
    margin-bottom: 4px;
}

.benefit-services-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

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

/* Contact Page */
.contact-main {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.contact-card-icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card address,
.contact-card p {
    margin-bottom: 8px;
}

.contact-link {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-list li:last-child {
    border-bottom: none;
}

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

.contact-details {
    flex: 1.5;
}

.company-info-block {
    margin-bottom: 32px;
}

.company-info-block h2 {
    margin-bottom: 16px;
}

.directions-block h3 {
    margin-bottom: 20px;
}

.direction-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.direction-item svg {
    flex-shrink: 0;
}

.direction-item h4 {
    margin-bottom: 4px;
}

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

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

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
}

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

.contact-cta-text {
    flex: 1;
}

.contact-cta-text h2 {
    margin-bottom: 16px;
}

.contact-cta-text p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

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

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

/* Company Details */
.company-details {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

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

.company-detail-item {
    flex: 1;
    min-width: 180px;
    padding: 20px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.company-detail-item h4 {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.company-detail-item p {
    margin-bottom: 0;
    font-weight: 500;
}

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

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

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

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

.thank-you-info {
    text-align: left;
    background-color: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.thank-you-info h3 {
    margin-bottom: 16px;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 12px;
}

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

/* Related Content */
.related-content {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

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

.related-item {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

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

.related-item h3 {
    margin-bottom: 8px;
}

.related-item p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.link-arrow {
    font-weight: 600;
}

.link-arrow::after {
    content: ' →';
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}

.legal-section h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-address {
    background-color: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.legal-definitions dt {
    font-weight: 600;
    margin-top: 16px;
}

.legal-definitions dd {
    color: var(--color-text-light);
    margin-left: 0;
    margin-bottom: 8px;
}

/* Rights Grid */
.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
}

.right-card {
    flex: 1;
    min-width: 280px;
    padding: 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.right-card h3 {
    margin-bottom: 12px;
    margin-top: 0;
}

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

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 16px 0;
}

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

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

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

/* Mobile Styles */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

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

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

    .hero-visual {
        order: -1;
    }

    .philosophy-content,
    .story-content,
    .insights-content,
    .benefits-services-content,
    .contact-cta-content {
        flex-direction: column;
    }

    .philosophy-visual,
    .story-visual,
    .insights-visual,
    .benefits-services-visual,
    .contact-cta-visual {
        order: -1;
    }

    .services-grid,
    .testimonials-grid,
    .industries-grid,
    .values-grid,
    .team-grid,
    .process-steps {
        flex-direction: column;
    }

    .service-card,
    .testimonial,
    .industry-item,
    .value-card,
    .team-member,
    .process-step {
        min-width: 100%;
    }

    .trust-grid {
        flex-direction: column;
        align-items: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 70px;
    }

    .timeline-marker::after {
        right: -13px;
    }

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

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

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

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .company-details-grid {
        flex-direction: column;
    }

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

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

    .hero {
        padding: 40px 0;
    }

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

    section {
        padding: 48px 0;
    }

    .btn {
        width: 100%;
    }

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