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

:root {
    --color-primary: #2c5282;
    --color-primary-dark: #1a365d;
    --color-primary-light: #4299e1;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #e2e8f0;
    --color-border: #e2e8f0;
    --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 15px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --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 20px;
}

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

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

img, svg {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

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

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

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

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.btn-secondary {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
    border-color: var(--color-border);
}

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

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

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

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

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

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* 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: 1.5rem;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-illustration {
    width: 100%;
    max-width: 400px;
}

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

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

.page-hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.section-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

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

.philosophy-content {
    flex: 1.2;
}

.philosophy-content h2 {
    margin-top: 0.5rem;
}

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

.philosophy-icon {
    width: 100%;
    max-width: 280px;
}

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

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.service-card h3 {
    color: var(--color-primary-dark);
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

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

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h3 {
    color: var(--color-primary-dark);
}

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

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
}

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

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.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.open {
    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%);
    text-align: center;
}

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

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

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

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

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

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

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

.footer-brand .logo {
    color: #fff;
    margin-bottom: 15px;
}

.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: 20px;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

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

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

/* 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: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
    min-width: 280px;
}

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

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

.cookie-modal.show {
    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: 20px 24px;
    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: 24px;
}

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

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

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

.cookie-option-header label {
    font-weight: 500;
    cursor: pointer;
}

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

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

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

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
}

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

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

.story-content {
    flex: 1.2;
}

.story-visual {
    flex: 0.8;
}

.story-illustration {
    width: 100%;
    max-width: 300px;
}

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

.milestones-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.milestone-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.milestone-item:last-child {
    margin-bottom: 0;
}

.milestone-year {
    flex-shrink: 0;
    width: 70px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

/* Values */
.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.value-card h3 {
    color: var(--color-primary-dark);
}

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

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

/* Approach */
.approach-section {
    padding: 80px 0;
}

.approach-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-content {
    flex: 1.5;
}

.approach-highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

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

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

/* Services Page */
.services-intro {
    padding: 60px 0;
}

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

.services-list-section {
    padding: 60px 0;
}

.services-list-section.services-alt {
    background-color: var(--color-bg-alt);
}

.services-list-section h2 {
    margin-bottom: 2rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-card {
    background: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.services-alt .service-detail-card {
    background: var(--color-bg);
}

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

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

.service-title-price {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.service-title-price h3 {
    margin: 0;
}

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

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

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

.process-detail-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-detail-grid {
    max-width: 800px;
    margin: 0 auto;
}

.process-detail-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.process-detail-item:last-child {
    margin-bottom: 0;
}

.process-detail-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
}

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

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

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.comparison-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
}

.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-bg-alt);
    font-weight: 600;
    color: var(--color-primary-dark);
}

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

.check-icon {
    color: var(--color-primary);
}

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

.services-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.benefit-item h3 {
    margin-bottom: 10px;
}

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

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

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-block {
    margin-bottom: 30px;
}

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

.contact-block h3 {
    margin-bottom: 10px;
}

.contact-block p {
    margin-bottom: 5px;
}

.contact-block a {
    word-break: break-word;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-details {
    flex: 1;
    min-width: 280px;
}

.company-info-card {
    background: var(--color-bg-alt);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.company-info-card h3 {
    margin-bottom: 15px;
}

.company-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-mini {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-mini-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-mini-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

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

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

.directions-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.directions-text {
    flex: 1.5;
    min-width: 300px;
}

.direction-item {
    margin-top: 20px;
}

.direction-item h4 {
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

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

.directions-visual {
    flex: 1;
    min-width: 250px;
}

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

/* Info Section */
.info-section {
    padding: 60px 0;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.info-icon {
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

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

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

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

.thank-you-lead {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.next-steps-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.next-steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.next-step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.next-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.next-step-item h3 {
    margin-bottom: 10px;
}

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

.featured-content {
    padding: 60px 0;
}

.featured-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: var(--color-bg-alt);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

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

.featured-card h3 {
    margin-bottom: 10px;
}

.featured-card p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.link-arrow {
    font-weight: 500;
    color: var(--color-primary);
}

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

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

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

.legal-updated {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.legal-text ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.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 Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero .container,
    .philosophy-section .container,
    .story-section .container,
    .approach-section .container {
        flex-direction: column;
    }

    .hero-visual,
    .philosophy-visual,
    .story-visual {
        order: -1;
    }

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

    .approach-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .highlight-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.25rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 100;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

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

    .stats-grid {
        gap: 30px;
    }

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

    .service-header {
        flex-direction: column;
    }

    .service-title-price {
        width: 100%;
    }

    .footer-grid {
        gap: 40px;
    }

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

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

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

    .hero {
        padding: 50px 0;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

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

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

    .service-card,
    .value-card,
    .testimonial-card,
    .team-card {
        min-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}
