/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    color: #3a6b44;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a8f5f;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2f;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: #5a8f5f;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #4a7a4f;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e0;
    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: 600;
    color: #2c3e2f;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #2c3e2f;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3a6b44;
}

/* Editorial Layout */
.editorial-layout {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.article-header {
    margin-bottom: 2.5rem;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a2e1c;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5a4c;
    font-style: italic;
}

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

.inline-media img {
    width: 100%;
    border-radius: 2px;
}

.inline-media figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #6a7a6c;
    font-style: italic;
}

.inline-media-right {
    float: right;
    width: 55%;
    margin: 1rem 0 2rem 2.5rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem;
    color: #1a2e1c;
    font-weight: 600;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e2f;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
}

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

/* Inline CTA Blocks */
.inline-cta-block {
    background-color: #f0f5f1;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    text-align: center;
    border-left: 4px solid #3a6b44;
}

.cta-secondary {
    background-color: #e8f0e9;
}

.cta-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a2e1c;
}

.cta-wrapper p {
    margin-bottom: 1.5rem;
    color: #4a5a4c;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3a6b44;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
}

.btn-primary:hover {
    background-color: #2e5636;
}

.btn-secondary {
    background-color: #5a8f5f;
}

.btn-secondary:hover {
    background-color: #4a7a4f;
}

/* Services Section */
.services-highlight {
    margin: 5rem 0;
}

.services-highlight h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a2e1c;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5a4c;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e5e0;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2e1c;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4a5a4c;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3a6b44;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #3a6b44;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2e5636;
}

/* Services Detailed */
.services-detailed {
    margin: 4rem 0;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin: 5rem 0;
    align-items: flex-start;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2e1c;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c3e2f;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.7rem;
}

.service-detail-image {
    flex: 0 0 350px;
}

.service-detail-image img {
    border-radius: 2px;
    width: 100%;
}

/* Form Section */
.form-section {
    background-color: #f0f5f1;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2e1c;
}

.form-intro {
    margin-bottom: 2rem;
    color: #4a5a4c;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e2f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d5d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3a6b44;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #3a6b44;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2e5636;
}

/* Testimonial Block */
.testimonial-block {
    background-color: #f8f9f8;
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-left: 4px solid #5a8f5f;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e2f;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #5a7a5c;
}

/* Contact Info */
.contact-info-section {
    margin: 4rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2e1c;
}

.contact-item p {
    line-height: 1.8;
    color: #4a5a4c;
}

.contact-item .note {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #6a7a6c;
}

/* Legal Pages */
.legal-page .article-body table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.legal-page .article-body th,
.legal-page .article-body td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d0d5d0;
}

.legal-page .article-body th {
    background-color: #f0f5f1;
    font-weight: 600;
}

/* Thanks Page */
.thanks-page .article-body {
    text-align: center;
}

.thanks-page .article-header {
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #2c3e2f;
    color: #d5e0d7;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #d5e0d7;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

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

    .article-body {
        font-size: 1rem;
    }

    .inline-media-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

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

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

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

    .editorial-layout {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.6rem;
    }

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

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