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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e67e22;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #d35400;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 1.2rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

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

.sticky-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230,126,34,0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.5);
}

.hero-immersive {
    margin-top: 70px;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(44,95,141,0.9), rgba(26,26,26,0.8)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 3rem 2rem;
}

.hero-text-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-text-narrow h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.story-opener {
    padding: 5rem 2rem;
    background: var(--white);
}

.content-flow {
    max-width: 700px;
    margin: 0 auto;
}

.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    color: var(--primary-color);
    font-weight: 700;
}

.content-flow p {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
}

.problem-reveal {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.split-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.reveal-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.insight-deep {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.insight-deep h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-deep p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.amplification-block {
    padding: 6rem 2rem;
    background: var(--white);
}

.stacked-reveal {
    max-width: 900px;
    margin: 0 auto;
}

.reveal-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.reveal-number {
    background: var(--secondary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reveal-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.visual-contrast {
    position: relative;
    margin: 4rem 0;
}

.image-stack img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.overlay-caption {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 2rem 4rem;
    border-radius: 4px;
    max-width: 90%;
}

.overlay-caption p {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

.trust-builder h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.trust-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

.benefits-cascade {
    padding: 6rem 2rem;
    background: var(--white);
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-cascade h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.benefit-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
}

.benefit-item img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    height: 250px;
    object-fit: cover;
}

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

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.scenario-storytelling {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(44,95,141,0.05), rgba(230,126,34,0.05));
}

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

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

.scenario-text p {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    color: var(--text-color);
    line-height: 1.8;
}

.cta-interrupt {
    padding: 4rem 2rem;
    background: var(--dark-color);
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,126,34,0.4);
}

.services-pricing {
    padding: 6rem 2rem;
    background: var(--white);
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.badge,
.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.service-card.featured .price {
    color: var(--white);
}

.btn-service {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.service-card.featured .btn-service {
    background: var(--white);
    color: var(--primary-color);
}

.service-card.featured .btn-service:hover {
    background: var(--light-bg);
}

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(230,126,34,0.1), rgba(44,95,141,0.1));
    text-align: center;
}

.urgency-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.urgency-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

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

.form-description {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

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

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.3);
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.final-push {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.push-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-final {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #234567;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,95,141,0.3);
}

.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

.page-hero {
    margin-top: 70px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), #234567);
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-story h2 {
    font-size: 2.3rem;
    margin: 3rem 0 1.5rem;
    color: var(--dark-color);
}

.about-story p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-values {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.value-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-detailed {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-detail {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border: 2px solid transparent;
    position: relative;
}

.service-detail.featured-service {
    background: linear-gradient(135deg, rgba(44,95,141,0.05), rgba(230,126,34,0.05));
    border-color: var(--secondary-color);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 20px;
}

.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: 2rem;
    color: var(--dark-color);
}

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

.service-body p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-body h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.service-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-body ul li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

.btn-service-detail {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: #234567;
    transform: translateY(-2px);
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.contact-info {
    padding: 4rem 2rem;
    background: var(--white);
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.faq-list {
    margin-top: 3rem;
}

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

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

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

.thanks-page {
    margin-top: 70px;
    padding: 6rem 2rem;
    background: var(--light-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

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

.service-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.thanks-info {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-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-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: var(--white);
}

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

.updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-color);
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.2rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .benefit-blocks,
    .services-grid {
        flex-direction: column;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .thanks-content {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}