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

:root {
    --primary-color: #2d5a8c;
    --accent-color: #e85d3f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: var(--bg-white);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #d14d2f;
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

/* Navigation */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links {
    display: none;
}

.nav-links li {
    display: inline-block;
    margin-left: 2rem;
}

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

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

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    flex-direction: column;
    padding: 1rem;
}

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

.mobile-menu a {
    padding: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

/* Hero Sections */
.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    max-width: 600px;
}

.hero-visual {
    flex: 1;
}

.visual-placeholder svg {
    width: 100%;
    height: auto;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: var(--bg-white);
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.hero-content-centered p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
}

/* CTAs */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.cta-primary:hover {
    background: #d14d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 93, 63, 0.3);
}

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

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

/* Split Container Pattern */
.split-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.split-left, .split-right {
    flex: 1;
}

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

/* Sections */
section {
    padding: 4rem 2rem;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Problem Statement */
.problem-statement {
    background: var(--bg-light);
}

.icon-block svg {
    margin-bottom: 2rem;
}

/* Insight Reveal */
.insight-reveal {
    background: var(--bg-white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Service Cards */
.services-preview {
    background: var(--bg-light);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.select-service {
    width: 100%;
    margin-top: 1.5rem;
}

/* Methodology Section */
.methodology-section {
    background: var(--bg-white);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 60px;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 0.25rem;
}

.author-role {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    background: var(--bg-white);
}

.service-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-block {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

/* Trust Indicators */
.trust-indicators {
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

/* Forms */
.contact-form-section {
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #d14d2f;
    transform: translateY(-2px);
}

/* CTA Sections */
.final-cta, .cta-section, .contact-prompt {
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(232, 93, 63, 0.4);
    display: inline-block;
}

.sticky-btn:hover {
    background: #d14d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 93, 63, 0.5);
}

/* Services Detail Page */
.services-detail {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    padding: 4rem 2rem;
}

.service-detail-card:nth-child(even) {
    background: var(--bg-light);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.service-features {
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

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

.service-timeline {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

/* Methodology Preview */
.methodology-preview {
    background: var(--bg-white);
}

.methodology-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-block {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.method-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.method-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Service Comparison */
.service-comparison {
    background: var(--bg-light);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.recommended-service {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-weight: 600;
    color: var(--accent-color);
}

/* Contact Page */
.contact-info-section {
    background: var(--bg-white);
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.contact-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-content p,
.contact-content a {
    color: var(--text-medium);
    margin: 0;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

/* What Happens Next */
.what-happens-next {
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-icon {
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* FAQ */
.faq-section {
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    margin: 0;
}

/* Trust Signal */
.trust-signal {
    background: var(--bg-light);
}

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

.trust-content.centered {
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    background: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    text-align: center;
    color: var(--bg-white);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.selected-service-display {
    margin-top: 2rem;
}

.service-confirmation {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.service-confirmation h3 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.service-confirmation p {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin: 0;
}

/* Next Steps Section */
.next-steps-section {
    background: var(--bg-white);
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Meanwhile Section */
.meanwhile-section {
    background: var(--bg-light);
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-link {
    display: block;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.resource-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.resource-link h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-link p {
    margin: 0;
}

/* Confirmation Details */
.confirmation-details {
    background: var(--bg-white);
}

.confirmation-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.confirmation-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Page */
.about-intro {
    background: var(--bg-white);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

.philosophy-section {
    background: var(--bg-light);
}

.icon-set {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.team-approach {
    background: var(--bg-white);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.member-avatar {
    margin: 0 auto 1.5rem;
}

.member-role {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

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

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.values-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Timeline Section */
.timeline-section {
    background: var(--bg-white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
}

/* Impact Section */
.impact-section {
    background: var(--bg-light);
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

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

.impact-label {
    color: var(--text-medium);
}

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.legal-content {
    background: var(--bg-white);
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-container p {
    margin-bottom: 1.5rem;
}

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

.legal-container a:hover {
    color: var(--accent-color);
}

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

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

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

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

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

    h2 {
        font-size: 2.25rem;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .split-container {
        flex-direction: row;
        gap: 4rem;
    }

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

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

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

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

    .service-card {
        flex: 1;
        min-width: 300px;
    }

    .testimonial-container {
        flex-direction: row;
    }

    .service-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-block {
        flex: 1;
        min-width: 300px;
    }

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

    .trust-item {
        flex: 1;
        min-width: 200px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .methodology-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .method-block {
        flex: 1;
        min-width: 250px;
    }

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

    .comparison-card {
        flex: 1;
        min-width: 250px;
    }

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

    .faq-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1;
        min-width: 400px;
    }

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

    .team-member {
        flex: 1;
    }

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

    .value-block {
        flex: 1;
        min-width: 45%;
    }

    .impact-stats {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .split-container {
        gap: 6rem;
    }

    section {
        padding: 6rem 2rem;
    }

    .service-cards {
        flex-wrap: nowrap;
    }

    .service-split {
        flex-wrap: nowrap;
    }

    .methodology-blocks {
        flex-wrap: nowrap;
    }

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

    .values-split {
        flex-wrap: nowrap;
    }
}
