/* 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: #2a2a2a;
    background-color: #fafaf8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3d29;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

.brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f0;
    padding: 6px 14px;
    border-radius: 3px;
}

/* Editorial Content Layout */
.editorial-content {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background-color: #d4d4cc;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-text-overlay h1 {
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.lead-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

/* Content Narrow - Core Editorial Layout */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.opening-graf {
    font-size: 22px;
    line-height: 1.65;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 36px;
    padding-left: 30px;
    border-left: 4px solid #2d5a3d;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 50px 0 26px 0;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 36px 0 20px 0;
    color: #2a2a2a;
}

.content-narrow ul, .content-narrow ol {
    margin: 26px 0;
    padding-left: 40px;
}

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

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

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

.inline-image-block figcaption {
    padding: 20px 26px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

/* CTA Inline */
.cta-inline {
    margin: 45px 0;
    text-align: center;
}

.btn-inline {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-inline:hover {
    background-color: #1e3d29;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-inline-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #ffffff;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-inline-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

/* Service Preview Cards - Inline */
.services-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card-inline {
    background-color: #f9f9f7;
    padding: 32px;
    border-left: 4px solid #2d5a3d;
}

.service-card-inline h3 {
    font-size: 22px;
    margin: 0 0 14px 0;
}

.service-card-inline p {
    margin-bottom: 18px;
    font-size: 17px;
}

.price-tag {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2d5a3d;
    margin-top: 12px;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #f0f0eb;
    padding: 50px 45px;
    margin: 60px 0;
    text-align: center;
    border-radius: 4px;
}

.final-cta-section h3 {
    font-size: 28px;
    margin: 0 0 18px 0;
}

.final-cta-section p {
    margin-bottom: 28px;
    font-size: 18px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-large:hover {
    background-color: #1e3d29;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Full Width Disclaimer */
.full-width-disclaimer {
    background-color: #f5f5f0;
    padding: 40px 20px;
    margin-top: 60px;
}

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

/* Services Page Specific */
.page-header-editorial {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px 50px 30px;
    text-align: center;
}

.page-header-editorial h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.subheading {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.service-detail-block {
    margin-bottom: 70px;
}

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

.service-header h2 {
    margin: 0;
    font-size: 30px;
}

.price-prominent {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
}

.service-detail-block img {
    width: 100%;
    margin: 26px 0;
    border-radius: 4px;
}

.service-description {
    margin-top: 24px;
}

.service-description p {
    margin-bottom: 20px;
}

.btn-select-service {
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #1e3d29;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    background-color: #f9f9f7;
    padding: 60px 20px;
    margin-top: 80px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-section p {
    margin-bottom: 40px;
    font-size: 17px;
    color: #555;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

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

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

.form-group label a {
    text-decoration: underline;
}

.btn-submit-form {
    padding: 16px 40px;
    background-color: #2d5a3d;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit-form:hover {
    background-color: #1e3d29;
    transform: translateY(-2px);
}

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

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.contact-item p {
    margin-bottom: 12px;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #2d5a3d;
    font-weight: 600;
}

.contact-note {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

.contact-expectations {
    margin: 30px 0;
    padding-left: 26px;
}

.contact-expectations li {
    margin-bottom: 16px;
    font-size: 17px;
}

.faq-item {
    margin-bottom: 40px;
    padding: 26px;
    background-color: #f9f9f7;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 17px;
}

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

.thanks-content {
    text-align: center;
    padding: 100px 30px;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555;
}

.selected-service-info {
    background-color: #f0f0eb;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.selected-service-info p {
    margin: 0;
    font-size: 17px;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #2d5a3d;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.steps-list {
    padding-left: 26px;
}

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

.thanks-actions {
    text-align: left;
    margin: 50px 0;
}

.thanks-actions h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.action-links {
    list-style: none;
    padding: 0;
}

.action-links li {
    margin-bottom: 14px;
}

.action-links a {
    font-size: 17px;
    text-decoration: underline;
}

.contact-reminder {
    background-color: #fff8e5;
    padding: 24px;
    border-left: 4px solid #e5a614;
    margin-top: 50px;
    text-align: left;
}

.contact-reminder p {
    margin: 0;
    font-size: 16px;
}

/* Legal Pages */
.legal-date {
    font-size: 15px;
    color: #888;
    font-style: italic;
}

.legal-content {
    padding-top: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 44px 0 20px 0;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 16px 0;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 12px;
}

/* Footer */
.main-footer {
    background-color: #2a2a2a;
    color: #d4d4d4;
    padding: 60px 40px 30px 40px;
    margin-top: 80px;
}

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b4b4b4;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b4b4b4;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 24px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    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: 30px;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 26px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cookie.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #1e3d29;
    transform: translateY(-2px);
}

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

.btn-cookie.reject:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.cookie-link {
    color: #b4d4be;
    font-size: 14px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #ffffff;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-text-overlay {
        padding: 30px;
        bottom: 30px;
    }

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

    .lead-intro {
        font-size: 18px;
    }

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

    .opening-graf {
        font-size: 20px;
    }

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

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

    .service-header {
        flex-direction: column;
        gap: 12px;
    }

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

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

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