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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #4a8a4c;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

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

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

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

.story-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.story-header h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.story-lead {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
}

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

.story-image {
    margin: 3rem 0;
    width: 100%;
}

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

.story-image-small {
    margin: 2.5rem 0;
    width: 100%;
}

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

.highlight-section {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 3rem 0;
}

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

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

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

.inline-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
}

.inline-cta p {
    margin: 0;
    font-size: 1.125rem;
}

.inline-cta strong {
    display: block;
    margin-bottom: 0.5rem;
}

.text-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.text-link:hover {
    color: var(--bg-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, var(--bg-white) 0%, #f0f7f0 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-what-you-get {
    margin: 1.5rem 0;
}

.service-what-you-get h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.service-what-you-get ul {
    list-style: none;
    padding: 0;
}

.service-what-you-get li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-what-you-get li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-for-whom {
    margin: 1.25rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-includes {
    font-size: 0.875rem;
    color: var(--text-light);
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
    margin-left: 1rem;
}

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

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

.btn-service:active {
    transform: translateY(0);
}

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

.calculation-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.calc-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.calc-item {
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 4px;
}

.calc-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.form-section h2 {
    margin-top: 0;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.btn-submit:active {
    transform: translateY(0);
}

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

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-brand strong {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.9375rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-copy {
    padding-top: 1.5rem;
    border-top: 1px solid #444;
}

.footer-copy p {
    margin: 0;
    color: #888;
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    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;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.btn-reject {
    background: #666;
    color: var(--bg-white);
}

.btn-reject:hover {
    background: #777;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.contact-method h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.map-placeholder {
    margin: 3rem 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.value-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.value-item h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.process-step h3 {
    margin-top: 0;
}

.process-step p {
    margin-bottom: 0;
}

.thanks-page .thanks-icon {
    text-align: center;
    margin: 3rem 0;
}

.thanks-page .next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.next-step {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.next-step strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-checklist {
    list-style: none;
    padding: 0;
}

.thanks-checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.thanks-checklist li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.related-link {
    display: block;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    transition: background 0.3s ease;
}

.related-link:hover {
    background: #e8f5e8;
}

.related-link h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}

.related-link p {
    margin: 0;
    color: var(--text-medium);
}

.thanks-closing {
    font-size: 1.25rem;
    text-align: center;
}

.thanks-signature {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.legal-section li {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .editorial-nav {
        padding: 1.5rem 10%;
    }

    .editorial-container {
        padding: 4rem 5%;
    }

    .story-header h1 {
        font-size: 3.25rem;
    }

    .story-lead {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .calc-comparison {
        flex-direction: row;
        gap: 2rem;
    }

    .calc-item {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .contact-method {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .editorial-container {
        max-width: 760px;
    }

    .sticky-btn {
        padding: 1.125rem 2rem;
    }
}
