/* ================================
   CSS Variables & Reset
   ================================ */
:root {
    --color-primary: #1a3a5c;
    --color-primary-dark: #0d2137;
    --color-accent: #4a90d9;
    --color-accent-light: #6ba3e0;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-alt: #f0f4f8;
    --color-border: #e0e4e8;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    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-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

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

.nav {
    padding: 15px 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);
    text-decoration: none;
}

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

.logo svg {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

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

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

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.875rem;
}

/* ================================
   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: 2.75rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

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

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

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

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

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* ================================
   Section Styles
   ================================ */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* ================================
   Philosophy Section
   ================================ */
.philosophy {
    background: var(--color-primary);
    color: white;
}

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

.philosophy .section-label {
    color: var(--color-accent-light);
}

.philosophy h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 25px;
}

.philosophy p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

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

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
}

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

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

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

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

.services-cta {
    text-align: center;
    margin-top: 40px;
}

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

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

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

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

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

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

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

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg-light);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.industry-item span {
    font-weight: 500;
    color: var(--color-text);
}

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

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

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

.testimonial blockquote {
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
}

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

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

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

/* ================================
   Case Examples Section
   ================================ */
.case-examples {
    background: var(--color-bg);
}

.cases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.case-item {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

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

.case-item h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 25px;
}

.value-item h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

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

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

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

.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: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

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

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    transition: var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding-bottom: 20px;
}

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

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

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

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    max-width: 350px;
}

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

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

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

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

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

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

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

/* ================================
   Cookie Banner
   ================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    color: white;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

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

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

.cookie-modal-header h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
}

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

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

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.cookie-option-info h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 5px;
}

.cookie-option-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    transition: var(--transition);
    border-radius: 26px;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--color-accent);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle.disabled .toggle-slider {
    background-color: var(--color-accent);
    opacity: 0.6;
    cursor: not-allowed;
}

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

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.story-svg {
    max-width: 100%;
}

/* ================================
   About Page - Timeline
   ================================ */
.milestones {
    background: var(--color-bg-light);
}

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

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

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

.timeline-year {
    width: 60px;
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
}

.timeline-content h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

/* ================================
   About Page - Team
   ================================ */
.team {
    background: var(--color-bg);
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
}

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

.team-member h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

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

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

/* ================================
   About Page - Values Detailed
   ================================ */
.values-detailed {
    background: var(--color-bg-alt);
}

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

.value-detailed {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
}

.value-detailed:last-child {
    border-bottom: none;
}

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

.value-content h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.value-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ================================
   About Page - Achievements
   ================================ */
.achievements {
    background: var(--color-primary);
    color: white;
}

.achievements h2 {
    color: white;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    text-align: center;
    padding: 20px 30px;
    min-width: 150px;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ================================
   About Page - Certifications
   ================================ */
.certifications {
    background: var(--color-bg);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.certification-item {
    text-align: center;
    padding: 25px;
    min-width: 200px;
}

.certification-item h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin: 15px 0 8px;
}

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

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

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

.intro-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

.service-detailed {
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--color-bg-alt);
}

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

.service-info h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 8px;
}

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

.service-body {
    padding: 30px;
}

.service-body > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-includes h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-includes ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.service-includes li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

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

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

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

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

.benefit-item h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

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

/* ================================
   Services Page - Process Horizontal
   ================================ */
.service-process {
    background: var(--color-bg);
}

.process-horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.process-step-h {
    text-align: center;
    padding: 20px;
    max-width: 180px;
}

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

.process-step-h h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 30px;
}

/* ================================
   Services Page - Comparison Table
   ================================ */
.service-comparison {
    background: var(--color-bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

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

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

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

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--color-text);
}

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

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

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

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

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

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

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

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

.contact-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-card address,
.contact-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--color-accent);
}

.contact-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.contact-description {
    flex: 1.5;
}

.contact-description h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.contact-description > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-option h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

/* ================================
   Contact Page - Offices
   ================================ */
.offices {
    background: var(--color-bg-light);
}

.offices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.office-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.office-type {
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.office-card address {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.office-hours {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ================================
   Contact Page - Directions
   ================================ */
.directions {
    background: var(--color-bg);
}

.directions-content {
    margin-top: 40px;
}

.directions-info > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
}

.transport-options {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.transport-item {
    flex: 1;
    min-width: 200px;
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.transport-item h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

/* ================================
   Contact Page - Company Info
   ================================ */
.company-info {
    background: var(--color-bg-alt);
}

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

.company-detail-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.detail-value {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

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

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

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

.thank-you-content h1 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

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

.thank-you-details {
    background: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 30px;
}

.thank-you-details h2 {
    font-size: 1.25rem;
    text-align: left;
    margin-bottom: 20px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

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

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

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.meanwhile-card {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
}

.meanwhile-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.meanwhile-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 15px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--color-accent);
}

.link-arrow::after {
    content: '\2192';
}

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

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

.legal-text h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.legal-text h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-text p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-text li {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 8px;
    position: relative;
}

.legal-text ul li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.legal-info-box {
    background: var(--color-bg-light);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--color-accent);
}

.legal-info-box p {
    margin-bottom: 8px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

/* ================================
   GDPR Page - Rights Grid
   ================================ */
.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.right-item h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.right-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ================================
   Cookies Policy - Tables
   ================================ */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

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

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

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

.cookie-settings-link {
    margin-top: 30px;
    text-align: center;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-visual {
        order: -1;
    }

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

    .story-text h2 {
        text-align: center;
    }

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

    .contact-description h2 {
        text-align: center;
    }

    .process-arrow {
        display: none;
    }
}

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

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

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

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

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

    section h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 50px 0;
    }

    .stats-grid {
        gap: 20px;
    }

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

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

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
        padding-left: 25px;
    }

    .timeline-year {
        text-align: left;
        width: auto;
    }

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

    .timeline-content::before {
        left: -25px;
    }

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

    .service-info h2 {
        text-align: center;
    }

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

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

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

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

    .btn {
        padding: 12px 20px;
    }

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

    .thank-you-actions .btn {
        width: 100%;
    }
}
