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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e4e;
    --accent-color: #f4f1e8;
    --dark-bg: #1a2912;
    --text-primary: #2c3e2a;
    --text-secondary: #5a6b56;
    --text-light: #ffffff;
    --border-color: #d4cfbb;
    --highlight: #a8c58a;
}

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

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

ul, ol {
    margin-bottom: 1.25rem;
    margin-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.nav-minimal {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-container {
    width: 100%;
}

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

.editorial-hero {
    padding: 4rem 0 3rem;
}

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

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

.hero-image-inline {
    margin: 3rem 0;
    border-radius: 4px;
}

.editorial-section {
    padding: 3rem 0;
}

.editorial-section.bg-accent {
    background-color: var(--accent-color);
    padding: 4rem 0;
}

.editorial-section.bg-dark {
    background-color: var(--dark-bg);
    padding: 4rem 0;
}

.editorial-section.bg-dark h2,
.editorial-section.bg-dark h3,
.editorial-section.bg-dark p,
.editorial-section.bg-dark li {
    color: var(--text-light);
}

.dropcap::first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.75rem 0 0;
    font-weight: bold;
    color: var(--primary-color);
}

.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

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

.cta-text-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

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

.editorial-quote {
    font-size: 1.35rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.editorial-quote cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    margin-top: 1rem;
    color: var(--text-primary);
}

.two-col-inline {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
}

.two-col-inline > div {
    flex: 1;
}

.two-col-inline h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.two-col-inline ul {
    margin-left: 1.25rem;
}

.result-text {
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
}

.result-text.failure {
    background-color: #fef2f2;
    color: #991b1b;
}

.result-text.success {
    background-color: #f0fdf4;
    color: #166534;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

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

.stat-label {
    font-size: 1rem;
    text-align: center;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.emphasis-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0;
    line-height: 1.5;
}

.inline-cta-block {
    background-color: var(--accent-color);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.inline-cta-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.editorial-list {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 2rem 0;
}

.editorial-list li {
    margin-bottom: 0.875rem;
}

.case-study-inline {
    background: linear-gradient(135deg, #f8f9f5 0%, #e8ede0 100%);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.case-study-inline h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.case-study-inline p {
    margin-bottom: 0.75rem;
}

.case-study-inline ul {
    margin-top: 1rem;
}

.services-showcase {
    padding: 4rem 0;
    background-color: #fafaf8;
}

.services-reveal-heading {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.service-card-editorial {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card-editorial.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

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

.service-content p {
    margin-bottom: 1rem;
}

.service-detail {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

.service-image {
    width: 400px;
    min-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.btn-select-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-editorial {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--highlight);
    background-color: #fafaf8;
}

.testimonial-editorial p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.testimonial-editorial cite {
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
}

.closing-text {
    font-size: 1.25rem;
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin: 3rem 0;
}

.form-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--accent-color) 100%);
}

.editorial-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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-group textarea {
    resize: vertical;
}

.btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.125rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-minimal {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.9375rem;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.7;
}

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

.sticky-cta-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 80, 22, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 41, 18, 0.98);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

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

.btn-accept,
.btn-reject {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--highlight);
    color: var(--text-primary);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.page-hero {
    background: linear-gradient(180deg, var(--accent-color) 0%, #ffffff 100%);
    padding: 4rem 0 3rem;
}

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

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.update-date {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.contact-info-block {
    margin: 3rem 0;
}

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

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

.contact-detail p {
    margin-bottom: 0.5rem;
}

.contact-detail .note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-approach {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.thanks-section {
    min-height: 60vh;
    padding: 5rem 0;
}

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

.thanks-content h1 {
    margin-bottom: 1.5rem;
}

.process-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.process-list li {
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .service-card-editorial,
    .service-card-editorial.reverse {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        min-width: 100%;
    }

    .two-col-inline {
        flex-direction: column;
        gap: 2rem;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.375rem;
    }

    .nav-container,
    .text-narrow,
    .hero-text-narrow {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

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

    .brand {
        font-size: 1.25rem;
    }

    .editorial-hero,
    .page-hero {
        padding: 3rem 0 2rem;
    }

    .editorial-section {
        padding: 2rem 0;
    }

    .editorial-section.bg-accent,
    .editorial-section.bg-dark {
        padding: 3rem 0;
    }

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

    .editorial-quote {
        font-size: 1.125rem;
        padding-left: 1.25rem;
    }

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

    .inline-cta-block {
        padding: 2rem 1.5rem;
    }

    .service-card-editorial {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0;
    }

    .service-content h3 {
        font-size: 1.375rem;
    }

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

    .form-section {
        padding: 3rem 0;
    }

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

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

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

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

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

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

    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .dropcap::first-letter {
        font-size: 3rem;
    }
}