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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7ab8;
    --accent-color: #e87722;
    --dark-bg: #0f2537;
    --light-bg: #f8f9fb;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

.nav-links a.active,
.nav-links a:hover {
    color: var(--secondary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.split-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.split-content {
    flex: 1;
    padding: 3rem;
}

.split-visual {
    flex: 1;
    padding: 2rem;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-split {
    background: linear-gradient(135deg, #f8f9fb 0%, #e8eef5 100%);
    padding: 5rem 0;
}

.hero-split h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.intro-section {
    padding: 6rem 0;
    background: var(--white);
}

.intro-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.problem-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.solution-split {
    padding: 6rem 0;
    background: var(--light-bg);
}

.solution-split h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.approach-section {
    padding: 5rem 0;
    background: var(--white);
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.pillars-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.pillar {
    flex: 1;
    text-align: center;
}

.pillar-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.pillar h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pillar p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-split {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.testimonial-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-mark {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-split blockquote {
    margin: 0;
}

.testimonial-split p {
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-split cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.services-preview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 340px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.results-section {
    padding: 6rem 0;
    background: var(--white);
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.result-metric {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 140px;
}

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

.why-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.why-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.why-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    flex: 1;
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-form-section {
    padding: 6rem 0;
    background: var(--white);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
}

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

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

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

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #d66a1a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d66a1a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 119, 34, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.cta-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-button {
    display: inline-block;
    padding: 1.2rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #d66a1a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 119, 34, 0.5);
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

.footer-column ul li a:hover {
    color: var(--accent-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.story-section,
.philosophy-section,
.approach-detail,
.difference-section {
    padding: 5rem 0;
}

.story-section {
    background: var(--white);
}

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

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

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

.values-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.value-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.team-section,
.results-philosophy,
.commitment-section {
    padding: 5rem 0;
}

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

.results-philosophy {
    background: var(--white);
}

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

.team-section h2,
.results-philosophy h2,
.commitment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-section p,
.results-philosophy p,
.commitment-section p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.metric-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.commitment-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

.commitment-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-overview {
    padding: 3rem 0;
    background: var(--white);
}

.overview-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.service-detail {
    padding: 5rem 0;
}

.service-detail.alternate {
    background: var(--light-bg);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 0;
}

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

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

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.service-meta-info {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.service-meta-info span {
    color: var(--text-light);
}

.service-meta-info strong {
    color: var(--text-dark);
}

.custom-programs {
    padding: 5rem 0;
    background: var(--white);
}

.custom-programs h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.custom-programs p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
}

.custom-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
}

.custom-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.custom-programs a {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

.pricing-philosophy {
    padding: 5rem 0;
    background: var(--light-bg);
}

.pricing-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.next-steps {
    padding: 5rem 0;
    background: var(--white);
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.next-steps a {
    display: block;
    text-align: center;
}

.contact-split {
    padding: 5rem 0;
    background: var(--white);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-method p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    padding: 0;
}

.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.approach-preview {
    padding: 5rem 0;
    background: var(--white);
}

.process-list {
    list-style: none;
    margin: 1.5rem 0;
}

.process-list li {
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.process-list strong {
    color: var(--primary-color);
}

.alternate-contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.alternate-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.alternate-contact p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
}

.exploration-list {
    max-width: 700px;
    margin: 2rem auto;
    list-style: none;
}

.exploration-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.thanks-details {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.step-text h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.thanks-actions {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.immediate-questions {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.immediate-questions a {
    color: var(--accent-color);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.while-you-wait {
    padding: 5rem 0;
    background: var(--white);
}

.while-you-wait h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.while-you-wait > .centered-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    padding: 5rem 0;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-content strong {
    color: var(--text-dark);
}

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

.cookie-table thead {
    background: var(--light-bg);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 968px) {
    .split-container {
        flex-direction: column;
    }

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

    .split-content,
    .split-visual {
        flex: none;
        width: 100%;
        padding: 2rem 1rem;
    }

    .hero-split h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .pillars-container,
    .why-grid,
    .values-grid {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

    .resource-cards {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-split h1,
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .hero-split p,
    .page-hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .result-metric {
        font-size: 2.5rem;
    }

    .pillar-number {
        font-size: 2.5rem;
    }
}