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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text-narrow {
    margin-bottom: 2rem;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.hero-image-inline {
    margin: 2rem 0;
}

.hero-image-inline img {
    width: 100%;
    border-radius: 4px;
}

.story-section {
    margin-bottom: 4rem;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.text-narrow p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.text-narrow h2 {
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

.content-image {
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    border-radius: 4px;
}

.content-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.insight-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
}

.benefit-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.benefit-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.urgency-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff3e0;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

.urgency-box p {
    margin-bottom: 0.75rem;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

.services-editorial {
    margin: 3rem 0;
}

.service-card {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    border-radius: 20px;
}

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

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

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-card h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-family: 'Arial', sans-serif;
}

.select-service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #d35400;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.form-section-editorial {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section-editorial h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    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);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #229954;
}

.cta-section-editorial {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-align: center;
}

.cta-section-editorial h2,
.cta-section-editorial h3 {
    color: white;
    margin-top: 0;
}

.cta-section-editorial p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-primary:hover {
    background-color: #d35400;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.final-cta-editorial {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    border-radius: 4px;
    text-align: center;
}

.final-cta-editorial h3 {
    color: white;
    margin-top: 0;
    font-size: 2rem;
}

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

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-large:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 6rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.page-header-narrow h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-info-box {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

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

.contact-item p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.info-section {
    margin: 3rem 0;
}

.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.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.thanks-content {
    padding: 3rem 0;
}

.thanks-box {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

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

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

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

.thanks-steps {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.thanks-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

.service-confirmation h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.selected-service-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

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

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fff3e0;
    border-left: 4px solid var(--secondary-color);
    text-align: left;
}

.thanks-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .text-narrow h2 {
        font-size: 1.6rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .sticky-cta-btn {
        width: 100%;
        text-align: center;
    }

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

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

    .cta-button-primary,
    .cta-button-secondary {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-text-narrow h1 {
        font-size: 1.75rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .editorial-container {
        padding: 1.5rem 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-price {
        font-size: 1.75rem;
    }

    .form-section-editorial {
        padding: 2rem 1.5rem;
    }

    .final-cta-editorial {
        padding: 2rem 1.5rem;
    }

    .final-cta-editorial h3 {
        font-size: 1.6rem;
    }
}
