/* ========================================
   CSS Variables
   ======================================== */
:root {
    --color-primary: #1a365d;
    --color-primary-light: #2b6cb0;
    --color-primary-lighter: #4299e1;
    --color-accent: #48bb78;
    --color-warning: #ed8936;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-muted: #edf2f7;
    --color-bg-accent: #ebf8ff;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-border: #e2e8f0;
    --color-border-light: #cbd5e0;
    --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: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

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

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

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

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

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

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

p {
    margin-bottom: 1rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

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

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

.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-primary);
}

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

.logo svg {
    flex-shrink: 0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all var(--transition);
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg);
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 105;
}

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

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu a {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

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

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

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

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

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

/* ========================================
   Section Label
   ======================================== */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.philosophy-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

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

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    padding: 25px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.value-card svg {
    margin-bottom: 15px;
}

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

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

/* ========================================
   Services Preview
   ======================================== */
.services-preview {
    padding: 70px 0;
    background-color: var(--color-bg-alt);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    padding: 30px;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    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 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

.stat-item {
    text-align: center;
    flex: 1 1 140px;
    max-width: 200px;
}

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

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
}

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

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
}

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

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

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

.process-alt .process-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-card {
    padding: 30px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.process-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    padding: 30px;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-primary-light);
}

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

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

.author-avatar {
    flex-shrink: 0;
}

.author-info cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

.industries-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--color-text);
}

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

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.insight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

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

.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;
    gap: 15px;
    padding: 20px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question span {
    flex: 1;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

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

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background-color: var(--color-primary);
    color: white;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

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

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

.footer-links a:hover {
    color: white;
}

.footer-contact address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-contact a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    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);
    z-index: 1000;
    padding: 20px;
}

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

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

.cookie-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

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

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

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

.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;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

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

.cookie-modal-close {
    padding: 5px;
    color: var(--color-text-muted);
}

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

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

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

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

.cookie-option-header {
    margin-bottom: 8px;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text);
}

.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.9rem;
    margin-bottom: 0;
    padding-left: 28px;
}

.cookie-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid var(--color-border);
}

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

/* ========================================
   Story Section (About Page)
   ======================================== */
.story-section {
    padding: 70px 0;
    background-color: var(--color-bg);
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

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

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

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

.milestones-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.milestone {
    display: flex;
    gap: 20px;
}

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

.milestone-content {
    flex: 1;
    padding-bottom: 30px;
    border-left: 2px solid var(--color-border);
    padding-left: 20px;
    position: relative;
}

.milestone-content::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
}

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

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

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

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

.value-block {
    padding: 30px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

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

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

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.member-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.team-member h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary-light);
    margin-bottom: 1rem;
}

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

.team-note {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--color-bg-accent);
    border-radius: var(--radius);
    text-align: center;
}

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

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

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.approach-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.approach-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.approach-list li span {
    color: var(--color-text-light);
}

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

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

/* ========================================
   Certifications Section
   ======================================== */
.certifications-section {
    padding: 70px 0;
    background-color: var(--color-bg-alt);
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--color-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

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

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

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

/* ========================================
   Services Page
   ======================================== */
.services-intro {
    padding: 50px 0;
    background-color: var(--color-bg);
}

.services-intro-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.intro-block {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
}

.intro-block svg {
    flex-shrink: 0;
}

.intro-block h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

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

.services-list-section {
    padding: 50px 0;
    background-color: var(--color-bg);
}

.services-list-section > .container > h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-border);
}

.category-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

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

.service-detail-card {
    padding: 25px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary-light);
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.service-header h4 {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

.comparison-table th:first-child {
    text-align: left;
}

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

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

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

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefits-content h2 {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

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

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

.benefit-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

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

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

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

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    padding: 30px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

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

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

.contact-card address p {
    margin-bottom: 0;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.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;
}

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

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.directions-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.direction-block {
    margin-bottom: 2rem;
}

.direction-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.direction-block ul {
    list-style: disc;
    padding-left: 20px;
}

.direction-block li {
    color: var(--color-text-light);
    margin-bottom: 5px;
}

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

.map-illustration {
    max-width: 350px;
    width: 100%;
}

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

.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.company-data h3 {
    margin-bottom: 1.5rem;
}

.company-data-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-data-list dt {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.company-data-list dd {
    color: var(--color-text);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.company-data-list dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ========================================
   Appointment Section
   ======================================== */
.appointment-section {
    padding: 70px 0;
    background-color: var(--color-bg-accent);
}

.appointment-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

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

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

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

.appointment-text ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.appointment-text li {
    color: var(--color-text-light);
    margin-bottom: 5px;
}

/* ========================================
   Remote Section
   ======================================== */
.remote-section {
    padding: 70px 0;
    background-color: var(--color-bg-alt);
}

.remote-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.remote-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.remote-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.remote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--color-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.remote-feature span {
    font-weight: 500;
}

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

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

/* ========================================
   Thank You Page
   ======================================== */
.thank-you-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

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

.thank-you-content > p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.thank-you-info {
    margin-top: 50px;
    text-align: left;
}

.thank-you-info h2 {
    text-align: center;
    margin-bottom: 30px;
}

.thank-you-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.thank-you-steps li {
    display: flex;
    gap: 20px;
}

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

.thank-you-steps .step-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

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

.thank-you-actions {
    margin-top: 50px;
    text-align: center;
}

.thank-you-actions p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-hero {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    text-align: center;
}

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

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

.legal-content {
    padding: 50px 0 80px;
}

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

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

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

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

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

.legal-article ul,
.legal-article ol {
    margin-bottom: 1rem;
    padding-left: 25px;
}

.legal-article ul {
    list-style: disc;
}

.legal-article ol {
    list-style: decimal;
}

.legal-article li {
    color: var(--color-text-light);
    margin-bottom: 8px;
}

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

.rights-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 1.5rem;
}

.right-item {
    padding: 20px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
}

.right-item h3 {
    margin-top: 0;
    font-size: 1.05rem;
}

.right-item p {
    margin-bottom: 0;
}

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

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

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

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

#openCookieSettings {
    margin: 1.5rem 0;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-actions {
        flex-direction: row;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        display: flex;
        gap: 30px;
    }

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

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

    .philosophy-values {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 12.5px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .stats-grid {
        gap: 50px;
    }

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

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 12.5px);
    }

    .industries-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .industries-text {
        flex: 1;
    }

    .industries-list {
        flex: 1.5;
    }

    .insights-grid {
        flex-direction: row;
    }

    .insight-card {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-links,
    .footer-contact {
        flex: 1 1 calc(33.333% - 30px);
    }

    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-content {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 1 1 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .approach-grid {
        flex-direction: row;
        align-items: center;
    }

    .approach-text {
        flex: 1.5;
    }

    .approach-visual {
        flex: 1;
    }

    .certifications-grid {
        flex-direction: row;
    }

    .certification-item {
        flex: 1;
    }

    .services-intro-content {
        flex-direction: row;
    }

    .intro-block {
        flex: 1;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-detail-card {
        flex: 1 1 calc(50% - 10px);
    }

    .benefits-grid {
        flex-direction: row;
        align-items: center;
    }

    .benefits-content {
        flex: 1.5;
    }

    .benefits-visual {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

    .directions-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .directions-content {
        flex: 1.5;
    }

    .directions-visual {
        flex: 1;
    }

    .company-info-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .company-description {
        flex: 2;
    }

    .company-data {
        flex: 1;
    }

    .remote-grid {
        flex-direction: row;
        align-items: center;
    }

    .remote-content {
        flex: 1.5;
    }

    .remote-visual {
        flex: 1;
    }

    .process-alt .process-cards {
        flex-direction: row;
    }

    .process-card {
        flex: 1;
    }
}

/* ========================================
   Responsive - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

    .philosophy-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-values {
        flex: 1.2;
    }

    .service-card {
        flex: 1 1 calc(25% - 18.75px);
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .footer-brand {
        flex: 1.5 1 0;
    }

    .footer-links,
    .footer-contact {
        flex: 1 1 0;
    }

    .value-block {
        flex: 1 1 calc(25% - 22.5px);
    }

    .team-member {
        flex: 1 1 calc(25% - 22.5px);
    }

    .rights-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .right-item {
        flex: 1 1 calc(50% - 10px);
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .nav-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }

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

    h1, h2, h3 {
        color: black;
    }
}
