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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfdfb;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e4;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a7c2c;
}

.editorial-main {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-content-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a2910;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.hero-image {
    margin: 2.5rem 0;
    overflow: hidden;
    border-radius: 3px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.editorial-section.alt-bg {
    background-color: #f7f7f4;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.narrow-content {
    max-width: 100%;
}

.editorial-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a2910;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.editorial-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.inline-image {
    margin: 3rem 0;
}

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

.inline-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

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

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #4a7c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-inline:hover {
    background-color: #3a6122;
}

.testimonial-quote {
    border-left: 4px solid #4a7c2c;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #4a5568;
}

.testimonial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #6b7280;
}

.service-card-editorial {
    border: 1px solid #e5e5e0;
    padding: 2rem;
    margin: 2.5rem 0;
    background-color: #ffffff;
    border-radius: 3px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-card-editorial h3 {
    font-size: 1.4rem;
    color: #1a2910;
    font-weight: 600;
}

.price {
    font-size: 1.3rem;
    color: #4a7c2c;
    font-weight: 700;
}

.service-card-editorial p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.btn-service {
    padding: 0.85rem 1.8rem;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1f3810;
}

.form-section {
    background-color: #f0f4ed;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 3rem 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c2c;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #4a7c2c;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3a6122;
}

.site-footer {
    background-color: #1a2910;
    color: #e5e5e0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

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

.btn-sticky {
    display: block;
    padding: 1rem 1.8rem;
    background-color: #d97706;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #4a7c2c;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a6122;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .editorial-main {
        padding: 2rem 1.5rem;
    }

    .editorial-section.alt-bg,
    .form-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-content-narrow h1 {
        font-size: 1.7rem;
    }
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a2910;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-selected {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: #f0f4ed;
    border-left: 4px solid #4a7c2c;
    font-weight: 600;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info {
    background-color: #f7f7f4;
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: #1a2910;
}

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

.contact-detail h3 {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a2910;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #374151;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.about-page-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-page-content h1 {
    font-size: 2.8rem;
    color: #1a2910;
    margin-bottom: 1.5rem;
}

.about-page-content h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.about-image {
    margin: 3rem 0;
    border-radius: 3px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}