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

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

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

a {
    color: #4a7c59;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d5a3a;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f4f4f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0d8;
}

/* Navigation - Minimal */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e4;
    padding: 20px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 16px;
    color: #555;
    font-family: 'Arial', sans-serif;
}

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

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px;
}

.content-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 56px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow p {
    margin-bottom: 22px;
}

.content-narrow ul,
.content-narrow ol {
    margin-left: 28px;
    margin-bottom: 22px;
}

.content-narrow li {
    margin-bottom: 10px;
}

.intro-large {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 32px;
    font-weight: 400;
}

/* Hero Editorial */
.hero-editorial {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 64px;
}

.hero-image-wrap {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #e8e8e0;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 24px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

/* Inline Image Block */
.inline-image-block {
    margin: 48px 0;
    background-color: #f9f9f7;
    padding: 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    background-color: #f9f9f7;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 44px 0;
    padding: 28px 32px;
    background-color: #f4f4f0;
    border-left: 4px solid #4a7c59;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Services Editorial */
.services-editorial {
    background-color: #f9f9f7;
    padding: 64px 0;
}

.service-item {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-bottom: 72px;
    align-items: flex-start;
}

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

.service-content {
    flex: 1;
}

.service-content h2,
.service-content h3 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 16px;
}

.service-content p {
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    background-color: #e8e8e0;
}

.service-image img {
    width: 100%;
    height: auto;
}

/* CTA Buttons */
.cta-service {
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-service:hover {
    background-color: #2d5a3a;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 320px;
    font-family: 'Arial', sans-serif;
}

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

/* CTA Editorial Section */
.cta-editorial {
    background-color: #4a7c59;
    padding: 80px 0;
    margin-top: 64px;
}

.cta-editorial .content-narrow h2 {
    color: #ffffff;
    margin-top: 0;
}

.cta-editorial .content-narrow p {
    color: #e8f3ea;
    font-size: 19px;
}

/* Form Editorial */
.form-editorial {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c2c2c;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #f4f4f0;
    padding: 40px 24px;
    margin-top: 64px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #2c2c2c;
    color: #c8c8c8;
    padding: 56px 0 32px 0;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #c8c8c8;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    padding: 24px 24px 0 24px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-cookie-accept:hover {
    background-color: #2d5a3a;
}

.btn-cookie-reject {
    background-color: #666;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #555;
}

/* Page Header */
.page-header {
    background-color: #f9f9f7;
    padding: 64px 0 40px 0;
    border-bottom: 1px solid #e8e8e4;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 17px;
    color: #666;
}

/* Contact Page Styles */
.contact-info-block {
    margin: 48px 0;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 0;
}

.non-clickable-email {
    color: #4a7c59;
    font-weight: 600;
}

.contact-note {
    background-color: #f9f9f7;
    padding: 28px;
    margin: 40px 0;
    border-left: 4px solid #4a7c59;
}

.contact-note h2,
.contact-note h3 {
    margin-top: 0;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e4;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
}

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

.thanks-content h1 {
    color: #4a7c59;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
    background-color: #f9f9f7;
    padding: 32px;
}

.thanks-info h2 {
    margin-top: 0;
}

.thanks-info ol {
    margin-left: 24px;
}

.thanks-cta {
    background-color: #f4f4f0;
    padding: 32px;
    margin: 40px 0;
    text-align: left;
}

.thanks-cta h3 {
    margin-top: 0;
}

.thanks-cta ul {
    list-style: none;
    margin-left: 0;
}

.thanks-cta ul li {
    margin-bottom: 12px;
}

.thanks-note {
    font-style: italic;
    color: #666;
    margin-top: 32px;
}

/* Legal Pages */
.legal-page .content-narrow h2 {
    font-size: 26px;
    margin-top: 40px;
}

.legal-page .content-narrow h3 {
    font-size: 20px;
    margin-top: 28px;
}

/* Inline Links */
.inline-link {
    color: #4a7c59;
    text-decoration: underline;
}

.inline-link:hover {
    color: #2d5a3a;
}

/* CTA Section */
.cta-section {
    background-color: #f4f4f0;
    padding: 48px 24px;
    margin-top: 64px;
    text-align: center;
}

.cta-section h2 {
    margin-top: 0;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .content-narrow h1 {
        font-size: 32px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .intro-large {
        font-size: 20px;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 24px;
    }

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

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

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

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

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

    .content-narrow h1 {
        font-size: 28px;
    }

    .content-narrow {
        padding: 32px 20px;
    }

    .btn-submit {
        max-width: 100%;
    }
}