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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #475569;
}

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-primary);
    background-color: #ffffff;
}

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

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

ul {
    list-style-position: inside;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    gap: 2rem;
}

.header-right a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

.hero-left {
    padding: 4rem 5%;
    background-color: var(--light-color);
}

.hero-text-container {
    max-width: 600px;
}

.hero-split h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-inline {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-inline:hover {
    color: var(--secondary-color);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.insight-split {
    display: flex;
    min-height: 70vh;
}

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

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

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.insight-content {
    max-width: 600px;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.insight-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.problem-amplification {
    padding: 5rem 5%;
    background-color: var(--dark-color);
    color: #ffffff;
}

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

.section-title-centered {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.scenario-card {
    flex: 1;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.scenario-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.scenario-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.trust-building-split {
    display: flex;
    min-height: 80vh;
}

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

.trust-left {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--light-color);
}

.trust-content {
    max-width: 600px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.trust-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.trust-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.trust-right {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
}

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

.services-overview-split {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.service-card-split {
    display: flex;
    gap: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-split:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-visual {
    flex: 0 0 40%;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-cta-center {
    text-align: center;
    margin-top: 3rem;
}

.methodology-split {
    display: flex;
    min-height: 80vh;
}

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

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

.method-left {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.method-content {
    max-width: 600px;
}

.method-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.method-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.principle-item {
    display: flex;
    gap: 1.5rem;
}

.principle-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.principle-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.principle-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.form-split-section {
    display: flex;
    min-height: 80vh;
    background-color: var(--light-color);
}

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

.form-split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.form-split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.urgency-note {
    padding: 1.5rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
}

.urgency-note strong {
    color: #92400e;
}

.form-split-right {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.main-form {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px 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(--primary-color);
}

.form-privacy {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    text-align: center;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.final-cta-split {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-emphasis {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer-split {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-text {
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-sticky {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 5%;
    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;
}

.cookie-content p {
    margin: 0;
    color: var(--text-secondary);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:not(.btn-secondary) {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background-color: var(--light-color);
}

.page-hero-split .hero-left {
    flex: 1;
    padding: 4rem 5%;
}

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

.page-hero-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.page-hero-split .hero-right {
    flex: 0 0 40%;
}

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

.services-detail-section {
    padding: 4rem 5%;
}

.service-detail-card {
    margin-bottom: 4rem;
    position: relative;
}

.service-detail-card.featured {
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
}

.featured-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

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

.service-detail-right h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-tagline {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.service-includes h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-includes ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.service-pricing-block {
    margin: 2rem 0;
}

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

.price-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.comparison-section {
    padding: 4rem 5%;
    background-color: var(--light-color);
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.comparison-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.comparison-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.comparison-recommendation {
    padding: 1rem;
    background-color: var(--light-color);
    border-left: 3px solid var(--primary-color);
    font-size: 0.875rem;
}

.services-cta-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: var(--primary-color);
    color: #ffffff;
    align-items: center;
}

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

.cta-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-left p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-right {
    text-align: right;
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.about-hero-split .hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: var(--light-color);
}

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

.about-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.about-hero-split .hero-right {
    flex: 0 0 45%;
}

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

.origin-story-split {
    display: flex;
    min-height: 70vh;
}

.origin-story-split.reverse {
    flex-direction: row-reverse;
}

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

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.story-right p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.philosophy-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-split {
    padding: 5rem 5%;
}

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

.team-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.team-member-card {
    margin-bottom: 3rem;
}

.team-member-card.reverse .team-member-split {
    flex-direction: row-reverse;
}

.team-member-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member-image {
    flex: 0 0 300px;
}

.team-member-image img {
    width: 100%;
    border-radius: 8px;
}

.team-member-info {
    flex: 1;
}

.team-member-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.results-section {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.results-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.results-intro {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.results-grid {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.result-stat {
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.values-split {
    display: flex;
    min-height: 70vh;
}

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

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

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.values-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.testimonials-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.testimonial-card-full {
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.testimonial-quote-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-full {
    text-align: center;
}

.testimonial-author-full strong {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author-full span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-cta-split {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.cta-content-centered h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-hero {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 4rem 5%;
}

.contact-info-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    color: var(--gray-color);
}

.contact-reasons {
    padding: 5rem 5%;
}

.contact-reasons h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.reason-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.reason-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.reason-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.quick-questions {
    padding: 4rem 5%;
    background-color: var(--light-color);
}

.quick-questions h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.faq-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.final-contact-cta {
    padding: 5rem 5%;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-alternative {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-alternative a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-hero {
    padding: 5rem 5%;
    background-color: var(--light-color);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-selected {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-selected p {
    color: var(--text-primary);
    font-size: 1.125rem;
}

.next-steps-section {
    padding: 5rem 5%;
}

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

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.thanks-resources {
    padding: 4rem 5%;
    background-color: var(--light-color);
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.resources-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.resource-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

.thanks-testimonial {
    padding: 5rem 5%;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 12px;
    text-align: center;
}

.testimonial-quote-large {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-center strong {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-author-center span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.legal-page {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

.legal-date {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.legal-container h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-container p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-container li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

.legal-contact {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.legal-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
}

.legal-notice h3 {
    margin-top: 0;
    color: #92400e;
}

.legal-notice p {
    color: #78350f;
}

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

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

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

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-split,
    .insight-split,
    .trust-building-split,
    .methodology-split,
    .form-split-section,
    .services-cta-split,
    .about-hero-split,
    .origin-story-split,
    .values-split,
    .page-hero-split,
    .service-detail-split,
    .team-member-split {
        flex-direction: column;
    }

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

    .scenario-grid,
    .trust-metrics,
    .services-split-grid,
    .philosophy-grid,
    .results-grid,
    .contact-info-grid,
    .reasons-grid,
    .resources-grid,
    .comparison-grid,
    .footer-main {
        flex-direction: column;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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