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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --accent-color: #d4713a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f7f4;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --max-content-width: 680px;
    --max-wide-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 3rem;
    text-align: center;
}

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

.hero-subtext {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.5;
}

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

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.editorial-image,
.editorial-image-small {
    margin: 3rem 0;
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.editorial-image-small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.editorial-image-small figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

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

.story-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.story-section h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.story-section em {
    font-style: italic;
    color: var(--text-medium);
}

.story-section.dark-bg {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 4px;
}

.story-section.dark-bg h2,
.story-section.dark-bg h3,
.story-section.dark-bg p {
    color: var(--white);
}

.editorial-list {
    list-style: none;
    margin: 2rem 0;
}

.editorial-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

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

.inline-cta {
    text-align: center;
    margin: 3rem 0;
}

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

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

.testimonial-inline {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

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

.services-editorial {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-editorial.featured {
    border: 2px solid var(--primary-color);
    background-color: #f9fdf9;
}

.service-card-editorial .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

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

.service-card-editorial p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-card-editorial ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card-editorial ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-card-editorial ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-medium);
}

.cta-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover {
    background-color: var(--primary-dark);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial-card {
    padding: 1.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
}

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

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

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px 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);
}

.form-consent {
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-consent label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-consent a {
    color: var(--primary-color);
}

.cta-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: var(--primary-dark);
}

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

.sticky-cta a {
    display: block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #c0602a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.footer-editorial {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: var(--max-wide-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-wide-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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

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

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

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

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

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

.cookie-btn.reject:hover {
    background-color: var(--bg-light);
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.7rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

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

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

.faq-item p {
    line-height: 1.7;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

.thanks-service-info p {
    margin: 0;
    font-size: 1.1rem;
}

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

.thanks-next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.thanks-tips {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-tips h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.tip-card {
    margin-bottom: 2rem;
}

.tip-card:last-child {
    margin-bottom: 0;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.tip-card p {
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.legal-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

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

    .nav-editorial {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

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

    .story-section.dark-bg {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .urgency-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

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

    .sticky-cta a {
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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

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

    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .contact-grid {
        gap: 2rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}
