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

:root {
    --primary-color: #2a7f62;
    --primary-dark: #1d5a45;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #d4a574;
    --error-color: #c73e1d;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li a {
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.editorial-content {
    width: 100%;
}

.story-flow {
    width: 100%;
}

.narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.editorial-hero {
    padding: 4rem 0 3rem;
    max-width: 680px;
    margin: 0 auto;
}

.hero-text-centered {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.hero-image {
    margin: 0;
}

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

.text-block {
    padding: 3rem 2rem;
}

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

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

.editorial-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cta-inline {
    text-align: center;
    padding: 2rem 0;
}

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

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

.inline-image {
    margin: 3rem auto;
    max-width: 800px;
    padding: 0 2rem;
}

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

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

.trust-signal {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.trust-signal blockquote {
    max-width: 680px;
    margin: 0 auto;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-medium);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

blockquote p {
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.service-reveal {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.section-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-details h4 {
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    text-align: center;
    display: block;
    text-decoration: none;
}

.btn-select:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
}

.form-section {
    padding: 4rem 2rem;
    background-color: var(--bg-white);
}

.form-section.hidden {
    display: none;
}

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

.form-intro {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    width: 100%;
}

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

.testimonial-block {
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-block blockquote {
    max-width: 680px;
    margin: 0 auto;
}

.cta-block {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    margin: 3rem 0;
}

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

.cta-block h3 {
    margin-top: 0;
    font-size: 2rem;
}

.cta-block p {
    max-width: 600px;
    margin: 1rem auto;
    font-size: 1.1rem;
}

.btn-cta-large,
.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-cta-large:hover,
.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

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

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-medium);
}

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

.sticky-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(42, 127, 98, 0.4);
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.sticky-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(42, 127, 98, 0.5);
    text-decoration: none;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

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

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

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

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
    text-decoration: none;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
}

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

.contact-info {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-block p {
    line-height: 1.8;
}

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

.stats-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.step h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.thanks-container {
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-details {
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    max-width: 500px;
}

.service-confirmation p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.next-steps {
    margin-top: 2rem;
}

.legal-page .legal-content {
    font-size: 0.95rem;
}

.legal-page h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-top: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .narrow,
    .editorial-hero,
    .hero-text-centered {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .text-block {
        padding: 2rem 1.5rem;
    }

    .service-cards {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stats-section {
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .contact-info {
        gap: 2rem;
    }

    .contact-block {
        flex: 1 1 100%;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 100%;
    }

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

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

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

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

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .price {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}