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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #1a3a26;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #0a0a0a;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

blockquote {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid #2d5f3f;
    font-style: italic;
    font-size: 1.15rem;
    color: #333;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.7rem;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #0a0a0a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 1.5rem;
}

.nav-links li {
    margin: 0.5rem 0;
}

.nav-links a {
    color: #333;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a.active {
    color: #2d5f3f;
}

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

/* Hero - Editorial Style */
.hero-editorial {
    margin-bottom: 3rem;
}

.hero-text-centered {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin-top: 1.5rem;
}

.hero-image-container {
    margin: 0 auto;
    max-width: 1000px;
}

.hero-img {
    width: 100%;
    border-radius: 4px;
}

/* Drop Cap - Editorial Touch */
.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.1rem 0 0;
    color: #2d5f3f;
    font-family: 'Georgia', serif;
}

/* Image Break - Full Width Visual Pause */
.image-break {
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.image-break img {
    width: 100%;
    border-radius: 4px;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 0.8rem;
}

/* Story Quote - Highlighted Blockquote */
.story-quote {
    background-color: #f5f5f3;
    padding: 2rem;
    border-left: 5px solid #2d5f3f;
    margin: 3rem 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Two Column Editorial Layout */
.two-col-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.col-text {
    flex: 1;
    padding: 1rem;
}

.col-image {
    flex: 1;
}

.col-image img {
    width: 100%;
    border-radius: 4px;
}

/* Highlight Section */
.highlight-section {
    background-color: #f9f9f7;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 6px;
}

/* Services - Inline Editorial Cards */
.services-inline {
    margin-top: 2.5rem;
}

.service-card-editorial {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-editorial h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.price-tag {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0;
}

/* Buttons and CTAs */
.btn-select-service, .btn-submit, .cta-button-primary {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #2d5f3f;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-select-service:hover, .btn-submit:hover, .cta-button-primary:hover {
    background-color: #1a3a26;
    transform: translateY(-2px);
}

.cta-inline {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #2d5f3f;
    color: #fff;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-top: 1rem;
}

.text-link-cta {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5f3f;
    text-decoration: underline;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #eef5f1;
    border-left: 4px solid #2d5f3f;
    padding: 2rem;
    margin: 3rem 0;
}

.inline-cta-box.cta-urgent {
    background-color: #fff7e6;
    border-left-color: #d68000;
}

/* Testimonial Block */
.testimonial-block {
    background-color: #2d5f3f;
    color: #fff;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Benefits List */
.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h4 {
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

/* Process List */
.process-list {
    margin: 2rem 0;
    counter-reset: process-counter;
    list-style: none;
    padding: 0;
}

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

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

/* Form Styles - Editorial */
.form-section {
    background-color: #f9f9f7;
    padding: 3rem 2rem;
    border-radius: 6px;
    margin: 4rem 0;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Final Thought Section */
.final-thought {
    margin: 4rem auto 3rem;
    padding: 2rem 1rem;
    text-align: center;
}

.closing-statement {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.closing-cta {
    margin-top: 1.5rem;
}

/* Footer - Minimal */
.footer-minimal {
    background-color: #0a0a0a;
    color: #ccc;
    padding: 2.5rem 1.5rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ccc;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5f3f;
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    display: inline-block;
}

.sticky-cta-btn:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: #2d5f3f;
    color: #fff;
}

.btn-reject {
    background-color: #444;
    color: #fff;
}

/* Page Headers */
.page-header {
    max-width: 900px;
    margin: 3rem auto 4rem;
    text-align: center;
    padding: 0 1.5rem;
}

.page-header-simple {
    max-width: 800px;
    margin: 2rem auto 3rem;
    padding: 0 1.5rem;
}

.header-lead {
    font-size: 1.2rem;
    color: #444;
    margin-top: 1.5rem;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-block {
    margin-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 3rem;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.service-price {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
}

.service-body {
    line-height: 1.7;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.contact-info-block {
    background-color: #f9f9f7;
    padding: 2rem;
    border-radius: 6px;
}

.contact-info-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

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

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

.centered-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.simple-list {
    margin: 2rem 0;
}

.simple-list li {
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #eef5f1;
    border-radius: 6px;
    margin: 4rem auto;
}

/* FAQ Section */
.faq-section {
    margin: 4rem auto;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.faq-minimal {
    margin: 3rem auto;
}

.faq-minimal p {
    margin-bottom: 2rem;
}

.cta-final {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f9f9f7;
    border-radius: 6px;
    margin: 4rem auto;
}

.final-note {
    font-style: italic;
    color: #666;
    margin-top: 1.5rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 3rem;
    font-size: 1.5rem;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: #f5f5f3;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

/* Thanks Page */
.thanks-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #444;
    margin: 1.5rem auto 2rem;
}

.service-confirmation {
    background-color: #eef5f1;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem auto;
    max-width: 600px;
}

.thanks-next-steps {
    margin: 3rem auto;
    text-align: left;
    max-width: 600px;
}

.thanks-next-steps ol {
    margin-top: 1.5rem;
}

.thanks-cta-block {
    margin: 3rem auto;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thanks-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #f5f5f3;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #e8e8e6;
}

.thanks-contact-reminder {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-block {
    background-color: #fff;
    padding: 2rem;
    border-left: 4px solid #2d5f3f;
}

.value-block h4 {
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

/* Responsive Design - Tablet and Up */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-links li {
        margin: 0;
    }

    .two-col-editorial {
        flex-direction: row;
        align-items: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-block {
        flex: 1;
        min-width: 280px;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 1;
        min-width: 280px;
    }
}

@media (min-width: 1024px) {
    .hero-text-centered {
        padding: 4rem 2rem 3rem;
    }

    .content-narrow {
        font-size: 1.1rem;
    }
}