/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --error-color: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* Navigation */
.main-nav {
    background: var(--text-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Split-Screen Layout (Archetype Foundation) */
.container-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-right {
    padding: 0;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-hero {
    display: inline-block;
    background: var(--text-white);
    color: var(--primary-color);
    padding: 16px 40px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-inline {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 16px;
}

.cta-inline:hover {
    background: var(--primary-dark);
}

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 18px 48px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.cta-large:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.link-arrow::after {
    content: '→';
    font-size: 20px;
}

.link-arrow:hover {
    gap: 12px;
}

/* Intro Section */
.intro-section {
    background: #f9fafb;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
}

.dark-bg {
    background: var(--dark-bg);
    color: var(--text-white);
}

.dark-bg h2 {
    color: var(--text-white);
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
}

.problem-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.problem-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: var(--text-white);
}

.solution-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.solution-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.benefit-list {
    margin: 24px 0;
    padding-left: 0;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background: #f9fafb;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: var(--text-white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

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

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--primary-dark);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--text-white);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.08);
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: #f3f4f6;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-benefits {
    margin-top: 24px;
}

.form-benefits li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.split-form {
    flex: 1;
    background: var(--text-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 16px 32px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
    background: var(--text-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-container-centered h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 12px;
}

.form-container-centered p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* CTA Final */
.cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.95);
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    color: var(--text-white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
}

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(16,185,129,0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(16,185,129,0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    color: var(--text-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 200;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

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

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 10px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0ea876;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 16px 0 20px;
}

.service-features {
    margin: 16px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
}

.service-detail-content.full-width {
    flex: 1;
}

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

.features-columns .service-features {
    flex: 1;
}

.btn-select-service.large {
    padding: 18px 40px;
    font-size: 18px;
    margin-top: 24px;
}

/* About Page */
.about-intro {
    background: #f9fafb;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--text-white);
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.approach-section {
    padding: 80px 20px;
    background: var(--text-white);
}

.approach-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

.stats-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.stats-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 32px;
    background: var(--text-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.team-section {
    padding: 80px 20px;
    background: var(--text-white);
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 48px auto 0;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-white);
}

.cta-section p {
    font-size: 19px;
    color: rgba(255,255,255,0.95);
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.contact-item a {
    color: var(--primary-color);
}

.contact-note {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-note p {
    margin: 0;
    font-size: 16px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--text-white);
}

.faq-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.faq-item p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 16px;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    min-height: 70vh;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 24px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.selected-service-box {
    background: #f0fdf4;
    border: 2px solid var(--secondary-color);
    padding: 24px;
    border-radius: 10px;
    margin: 32px 0;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.next-steps {
    margin: 48px 0;
}

.next-steps h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 36px;
}

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

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

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

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.thanks-note {
    background: #fef3c7;
    border-left: 4px solid var(--accent-color);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.thanks-note p {
    font-weight: 600;
    margin-bottom: 12px;
}

.prep-list {
    margin-top: 12px;
}

.prep-list li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.prep-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px 80px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 36px 0 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    list-style: disc;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background: #f9fafb;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.legal-page pre {
    background: #f9fafb;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 14px;
    margin: 16px 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--text-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .container-split.reverse {
        flex-direction: column;
    }

    .problem-grid,
    .testimonials-grid,
    .values-grid,
    .stats-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-detail-split {
        flex-direction: column;
        padding: 32px 24px;
    }

    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .features-columns {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .services-preview h2,
    .testimonials-section h2,
    .approach-section h2,
    .team-section h2 {
        font-size: 32px;
    }

    .cta-final h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .thanks-section h1 {
        font-size: 32px;
    }

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

    .form-container-centered {
        padding: 32px 24px;
    }
}