:root {
    --primary-green: #2d5016;
    --light-green: #5a7a3c;
    --accent-green: #7a9b59;
    --cream: #f9f6f1;
    --warm-white: #fefdfb;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --border-light: #e0ddd8;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-white);
    font-size: 16px;
}

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

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

a:hover {
    color: var(--light-green);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px var(--shadow);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-editorial {
    background: var(--warm-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.hero-editorial {
    position: relative;
    margin: 0 0 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px 30px;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-subtext {
    font-size: 18px;
    opacity: 0.95;
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-light);
}

.page-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.header-intro {
    font-size: 19px;
    color: var(--text-gray);
    font-style: italic;
}

.story-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 400;
}

.story-intro p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.inline-image {
    margin: 60px 0;
}

.inline-image img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

.inline-image figcaption {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
    line-height: 1.3;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-block ul,
.content-block ol {
    margin: 20px 0 20px 30px;
}

.content-block li {
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--text-dark);
}

.highlight-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-green);
    padding: 20px 0;
    border-left: 4px solid var(--accent-green);
    padding-left: 20px;
    margin: 30px 0;
}

.cta-inline {
    margin: 50px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-green);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--light-green);
    border-bottom-color: var(--light-green);
}

.testimonial-inline {
    margin: 50px 0;
    background: var(--cream);
    padding: 35px 30px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-green);
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-gray);
    font-weight: 600;
}

.services-editorial {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px var(--shadow);
    transform: translateY(-2px);
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail {
    font-size: 15px;
    color: var(--text-gray);
    font-style: italic;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
}

.btn-select {
    padding: 12px 28px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--light-green);
    transform: translateY(-1px);
}

.service-card.selected {
    border: 2px solid var(--accent-green);
    background: white;
}

.form-section {
    margin: 70px 0;
    padding: 40px;
    background: var(--cream);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.form-section > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-notice {
    background: #fff4e6;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #f59e0b;
    font-size: 15px;
    color: #92400e;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

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

.form-selected-service {
    background: white;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid var(--accent-green);
    font-size: 15px;
}

.form-selected-service strong {
    color: var(--primary-green);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.btn-submit:disabled {
    background: var(--text-gray);
    cursor: not-allowed;
    transform: none;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px var(--shadow);
    display: none;
}

.cta-sticky.show {
    display: block;
}

.cta-sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-sticky-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 30px;
    background: white;
    color: var(--primary-green);
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--cream);
    transform: translateY(-1px);
}

.footer-editorial {
    background: var(--text-dark);
    color: white;
    padding: 50px 30px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-green);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-green);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-image-section {
    flex: 1;
    min-width: 300px;
}

.contact-image-section img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.image-caption {
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-item a {
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 8px;
}

.process-list,
.promise-list,
.combination-examples {
    margin: 20px 0 20px 30px;
}

.process-list li,
.promise-list li,
.combination-examples li {
    margin-bottom: 15px;
    font-size: 17px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-dark);
}

.cta-section-large {
    margin: 60px 0;
    padding: 50px 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.cta-section-large h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section-large p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-green);
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.services-detailed {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.service-detail-card h2 {
    font-size: 26px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.service-description p {
    font-size: 16px;
    margin-bottom: 15px;
}

.service-description ul {
    margin: 15px 0 15px 25px;
}

.service-description li {
    margin-bottom: 10px;
    font-size: 16px;
}

.service-note {
    font-size: 15px;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 5px;
}

.btn-service {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--primary-green);
    color: white;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--light-green);
    transform: translateY(-1px);
}

.thanks-container {
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-service-info {
    background: var(--cream);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    border: 2px solid var(--accent-green);
}

.thanks-service-info h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.steps-list {
    margin-left: 25px;
}

.steps-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

.thanks-cta {
    margin: 50px 0;
}

.thanks-cta p {
    font-size: 16px;
    margin-bottom: 25px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: var(--cream);
    color: var(--primary-green);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: white;
}

.contact-reminder {
    margin: 50px 0;
    padding: 25px;
    background: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.contact-reminder p {
    margin-bottom: 8px;
}

.legal-page .legal-content {
    margin: 40px 0;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--primary-green);
    margin: 35px 0 15px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--light-green);
    margin: 25px 0 12px;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.legal-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
    text-align: center;
}

.legal-footer a {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-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-light);
    }

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

    .nav-links li {
        padding: 15px 30px;
        border-top: 1px solid var(--border-light);
    }

    .nav-links a::after {
        display: none;
    }

    .editorial-container {
        padding: 40px 20px 80px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .header-intro {
        font-size: 17px;
    }

    .lead-text {
        font-size: 20px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .cta-sticky-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-container h1 {
        font-size: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 26px;
    }

    .service-card {
        padding: 20px;
    }

    .form-section {
        padding: 25px 20px;
    }

    .cta-section-large {
        padding: 35px 25px;
    }

    .cta-section-large h2 {
        font-size: 26px;
    }
}