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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-lighter: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.split-left {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.split-right {
    padding: 0;
    background: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

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

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

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

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

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

.insight-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.insight-image {
    background: var(--bg-light);
}

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

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

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

.cta-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.trust-block {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.trust-block h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.reason-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.services-split {
    display: flex;
    min-height: 80vh;
    background: var(--bg-white);
}

.services-intro {
    max-width: 480px;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(49, 130, 206, 0.15);
}

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

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

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

.btn-select {
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    min-height: 60vh;
    background: var(--primary-color);
}

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

.testimonial-content {
    max-width: 520px;
}

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

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

.process-block {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
}

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

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

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

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

.reality-split {
    display: flex;
    min-height: 70vh;
    background: var(--bg-light);
}

.reality-content {
    max-width: 540px;
}

.reality-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.highlight {
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.urgency-block {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

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

.urgency-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.form-split {
    display: flex;
    min-height: 80vh;
    background: var(--bg-white);
}

.form-intro {
    max-width: 480px;
}

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

.form-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.contact-form {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}

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

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

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

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

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

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

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(49, 130, 206, 0.5);
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-cookie {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background: #2f855a;
}

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

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-split {
    display: flex;
    min-height: 50vh;
}

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

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

.story-content {
    max-width: 520px;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.values-block {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

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

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.team-split {
    display: flex;
    min-height: 50vh;
    background: var(--bg-light);
}

.team-intro {
    max-width: 480px;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

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

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

.approach-split {
    display: flex;
    min-height: 60vh;
}

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

.approach-content {
    max-width: 520px;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.credentials-block {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.credential-item p {
    color: var(--text-light);
}

.cta-split {
    display: flex;
    min-height: 50vh;
    background: var(--accent-color);
}

.cta-split .split-left {
    background: var(--accent-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

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

.cta-actions .cta-primary:hover {
    background: var(--bg-light);
}

.cta-actions .cta-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

.service-detail-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    border-bottom: 1px solid var(--border-color);
}

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

.service-info {
    flex: 1.5;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-info ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-price-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    text-align: center;
    width: 100%;
    max-width: 350px;
}

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

.price-desc {
    font-size: 1rem;
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.btn-select-large {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.btn-select-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.service-features {
    text-align: left;
}

.feature-item {
    padding: 0.7rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.comparison-block {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.comparison-table {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.comparison-cell:first-child {
    flex: 1.5;
    text-align: left;
}

.comparison-cell:last-child {
    border-right: none;
}

.faq-split {
    display: flex;
    padding: 5rem 5%;
    background: var(--bg-white);
    gap: 3rem;
}

.faq-split h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.faq-list {
    flex: 2;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

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

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

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

.services-cta .cta-primary:hover {
    background: var(--bg-light);
}

.contact-info-split {
    display: flex;
    min-height: 60vh;
}

.contact-details {
    max-width: 500px;
}

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

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

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

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

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

.contact-map {
    background: var(--bg-light);
}

.response-split {
    display: flex;
    min-height: 50vh;
}

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

.response-content {
    max-width: 520px;
}

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

.expectation-list {
    list-style: none;
}

.expectation-list li {
    padding: 1rem 0;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.alt-contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
}

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

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

.faq-contact {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.contact-cta-split {
    display: flex;
    min-height: 40vh;
    background: var(--accent-color);
}

.contact-cta-split .split-left {
    background: var(--accent-color);
}

.thanks-hero {
    padding: 6rem 5%;
    background: var(--bg-light);
    min-height: 80vh;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-service {
    margin-bottom: 3rem;
}

.selected-service {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.service-name {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next {
    margin-bottom: 4rem;
    text-align: left;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-white);
    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.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.thanks-resources {
    margin-bottom: 4rem;
}

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

.thanks-resources > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

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

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-contact {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    color: var(--text-lighter);
    margin-bottom: 3rem;
}

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

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

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

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

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

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

.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(--primary-color);
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-footer a {
    margin: 0 1rem;
}

@media (max-width: 968px) {
    .hero-split,
    .insight-split,
    .services-split,
    .testimonial-split,
    .reality-split,
    .form-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .approach-split,
    .cta-split,
    .contact-info-split,
    .response-split,
    .contact-cta-split {
        flex-direction: column;
    }

    .insight-split.reverse,
    .testimonial-split.reverse,
    .story-split.reverse,
    .approach-split.reverse,
    .response-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 50vh;
    }

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

    .nav-right {
        gap: 1rem;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-right {
        gap: 0.8rem;
        font-size: 0.9rem;
    }

    .reason-grid,
    .urgency-grid,
    .values-grid,
    .alt-contact-grid,
    .resource-cards {
        flex-direction: column;
    }

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

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

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}