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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--secondary-color);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-header {
    margin-bottom: 50px;
    text-align: center;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.narrative-block,
.insight-block,
.problem-amplification,
.revelation-section,
.trust-building,
.methodology-reveal,
.services-reveal,
.urgency-section,
.guarantee-section,
.form-section,
.final-push {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 500;
}

p {
    font-size: 18px;
    margin-bottom: 15px;
}

h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inline-cta {
    margin: 30px 0;
    text-align: center;
}

.text-link-cta {
    font-size: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.text-link-cta:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.insight-quote {
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 30px 0;
    background-color: var(--light-bg);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

.insight-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.emphasis-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
    line-height: 1.5;
}

.cta-block {
    margin: 40px 0;
    text-align: left;
}

.cta-block.centered {
    text-align: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

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

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

.btn-primary.large {
    padding: 20px 50px;
    font-size: 20px;
}

.insight-list {
    list-style: none;
    margin: 30px 0;
}

.insight-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 18px;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.testimonial-inline {
    background-color: var(--light-bg);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    display: block;
}

.phase-block {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid var(--secondary-color);
}

.phase-block h3 {
    margin-top: 0;
    font-size: 20px;
}

.phase-block p {
    margin-bottom: 0;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin: 25px 0;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
    background-color: #f0f8ff;
}

.badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.service-header h3 {
    margin: 0;
    font-size: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-description {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-ideal {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 15px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.guarantee-box {
    background-color: #e8f5e9;
    border: 2px solid var(--success-color);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.guarantee-box h3 {
    margin-top: 0;
    color: var(--success-color);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    color: #bbb;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}

.page-content {
    max-width: 900px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-item p {
    margin-bottom: 5px;
}

.small-text {
    font-size: 14px;
    color: #666;
}

.info-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.info-box h3 {
    margin-top: 0;
    color: #856404;
}

.info-box p {
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.thanks-details {
    margin: 50px 0;
    text-align: left;
}

.next-step {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.next-step h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--secondary-color);
}

.preparation-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.preparation-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 18px;
}

.preparation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.social-proof {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.legal-page h2 {
    margin-top: 50px;
}

.legal-page h3 {
    margin-top: 30px;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
}

.value-block {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.value-block h3 {
    margin-top: 0;
    font-size: 20px;
}

.value-block p {
    margin-bottom: 0;
}

.intro-section {
    margin-bottom: 40px;
}

.process-section {
    margin-top: 50px;
}

.process-step {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
}

.process-step h3 {
    margin-top: 0;
    font-size: 20px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .story-header h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .lead-text {
        font-size: 19px;
    }

    p {
        font-size: 17px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .contact-form {
        padding: 25px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .story-header h1 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 16px;
    }
}