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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #c89f5d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #b38a47;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Header and Navigation */
.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Georgia', serif;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f5f5f5;
}

/* Editorial Container */
.editorial-container {
    min-height: 100vh;
    padding: 3rem 1.5rem;
}

.story-flow {
    max-width: 700px;
    margin: 0 auto;
}

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

.hero-text-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.subheading {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    font-weight: 400;
}

.inline-image-hero {
    margin: 2rem 0;
    background-color: #e8e6e0;
}

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

/* Content Sections */
.narrative-intro,
.problem-reveal,
.insight-section,
.trust-building,
.benefits-reveal,
.final-message,
.contact-details {
    margin-bottom: 3.5rem;
}

.centered-text {
    text-align: left;
}

.centered-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.centered-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
    font-weight: 400;
}

.centered-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #333;
}

.opening-line {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 500;
}

/* Inline Images */
.inline-image-mid {
    margin: 2.5rem 0;
    background-color: #e8e6e0;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f3ed;
    border-left: 4px solid #c89f5d;
}

.customer-voice {
    font-style: italic;
}

.customer-voice p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.customer-voice cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Benefit List */
.benefit-list {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #333;
}

/* CTAs */
.cta-inline,
.cta-inline-final {
    text-align: center;
    margin: 3rem 0;
}

.btn-text-link {
    color: #c89f5d;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #b38a47;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #c89f5d;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Service Cards */
.offerings-preview {
    margin: 4rem 0;
}

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

.service-card {
    background-color: #ffffff;
    padding: 0;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: #e8e6e0;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    color: #c89f5d;
    font-weight: 700;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

/* Form Section */
.order-section {
    margin: 4rem 0;
}

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

.form-field {
    margin-bottom: 1.8rem;
}

.form-field label {
    display: block;
    font-size: 1rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #c89f5d;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #c89f5d;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer-editorial {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

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

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #c89f5d;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* Legal Pages */
.legal-page .centered-text ul {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-page .centered-text li {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: #333;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #f5f3ed;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    font-size: 0.95rem;
}

/* Thanks Page */
.thanks-page .hero-editorial {
    margin-bottom: 2rem;
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .subheading {
        font-size: 1rem;
    }

    .centered-text h2 {
        font-size: 1.6rem;
    }

    .centered-text p,
    .opening-line {
        font-size: 1rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .editorial-container {
        padding: 2rem 1rem;
    }

    .header-minimal {
        padding: 1rem;
    }

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

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