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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #fafaf8;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c94747;
    --success-color: #4f8f6f;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.ad-disclosure {
    background-color: var(--background-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    margin-bottom: 60px;
}

.hero-editorial h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 400;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image,
.section-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 2px;
}

.story-section,
.insight-section,
.problem-amplification,
.solution-reveal,
.trust-building,
.benefits-section,
.services-overview,
.contact-form-section,
.final-thought,
.services-intro,
.services-list,
.process-section,
.contact-info-section,
.faq-section,
.thanks-content,
.legal-section {
    margin-bottom: 50px;
}

h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 400;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

p {
    margin-bottom: 20px;
}

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

.cta-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    background-color: var(--background-light);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.service-preview {
    background-color: var(--background-light);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    border-radius: 2px;
}

.service-preview h3 {
    margin-bottom: 16px;
}

.service-preview p {
    margin-bottom: 24px;
}

.cta-button-primary,
.cta-button-secondary,
.submit-button {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

.cta-button-secondary {
    background-color: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.inline-cta-box {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.inline-cta-box p {
    color: var(--background-white);
    margin-bottom: 20px;
}

.service-card {
    background-color: var(--background-light);
    padding: 30px;
    margin: 30px 0;
    border-radius: 2px;
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 12px 28px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.select-service.selected {
    background-color: var(--success-color);
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: var(--primary-color);
    color: var(--background-white);
    margin-top: 10px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.submit-button:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
}

.service-selection-notice {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

.main-footer {
    background-color: var(--background-light);
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-section p {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
}

.footer-section a {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid var(--border-color);
}

.disclaimer p {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: var(--primary-color);
}

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

.cookie-btn.reject:hover {
    background-color: var(--background-white);
    color: var(--text-dark);
}

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

.service-card-detailed {
    background-color: var(--background-light);
    padding: 40px;
    margin: 40px 0;
    border-radius: 2px;
    position: relative;
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 6px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
}

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

.service-duration {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    margin: 20px 0;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px 0;
    font-family: 'Arial', sans-serif;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.process-step {
    padding: 24px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.process-step h3 {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 6px;
    font-family: 'Arial', sans-serif;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-context {
    background-color: var(--background-light);
    padding: 30px;
    margin: 40px 0;
}

.contact-context a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.next-steps {
    background-color: var(--background-light);
    padding: 40px;
    margin: 40px 0;
    text-align: left;
}

.steps-list {
    margin: 20px 0;
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-note {
    background-color: var(--background-light);
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.additional-info {
    margin-top: 50px;
    text-align: left;
}

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

.legal-date {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
}

.legal-list {
    margin: 20px 0 20px 30px;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 30px;
    }

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

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 30px 16px;
    }

    .service-preview,
    .inline-cta-box,
    .service-card,
    .service-card-detailed {
        padding: 24px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 26px;
    }

    .price,
    .price-large {
        font-size: 24px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}