/* 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: #fafafa;
}

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a4d2e;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a4d2e;
}

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a4d2e;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.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 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: #1a4d2e;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.cookie-reject:hover {
    background-color: #d0d0d0;
    transform: translateY(-1px);
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

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

/* Content Blocks */
.content-block {
    margin-bottom: 4rem;
}

.narrow-content {
    max-width: 650px;
}

.opening-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-block h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-block h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.3rem;
}

.content-block ul,
.content-block ol {
    margin-bottom: 1.3rem;
    margin-left: 1.8rem;
}

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

.content-block a {
    color: #1a4d2e;
    text-decoration: underline;
    transition: color 0.3s;
}

.content-block a:hover {
    color: #0f3320;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Insight Box */
.insight-box {
    background-color: #f9f9f9;
    border-left: 4px solid #1a4d2e;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.insight-box h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.insight-box p {
    margin-bottom: 0.8rem;
}

.insight-box ul {
    margin-top: 1rem;
}

/* Services Showcase */
.services-showcase {
    max-width: 100%;
    margin: 3rem 0;
}

.service-card {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-card:last-child {
    border-bottom: none;
}

.service-image-wrapper {
    margin-bottom: 1.5rem;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a4d2e;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
    margin: 1.5rem 0 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-service-btn,
.cta-link,
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover,
.cta-link:hover,
.cta-button:hover {
    background-color: #144024;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #1a4d2e;
    border: 2px solid #1a4d2e;
}

.cta-button.secondary:hover {
    background-color: #f5f5f5;
}

/* Testimonials */
.testimonials-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 3px solid #1a4d2e;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.order-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a4d2e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-notice {
    margin-top: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #1a4d2e;
}

/* Disclaimer Section */
.disclaimer-section {
    margin-top: 3rem;
}

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #e6d699;
    padding: 1.5rem;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #996600;
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5c4d00;
}

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a4d2e;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a4d2e;
}

/* Thanks Page */
.thanks-message {
    text-align: left;
}

.order-summary {
    background-color: #e8f5e9;
    border-left: 4px solid #1a4d2e;
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.order-summary h3 {
    margin-top: 0;
    color: #1a4d2e;
}

.order-summary p {
    margin-bottom: 0.5rem;
}

.next-steps {
    margin: 3rem 0;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    margin-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #1a4d2e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

.steps-list strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #1a4d2e;
}

.steps-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page .narrow-content {
    max-width: 750px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 2rem 1rem;
    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: 250px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

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

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

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

    .hero-intro {
        font-size: 1.1rem;
    }

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

    .content-block h2 {
        font-size: 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }
}
