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

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

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5d2f0e;
}

ul {
    list-style-position: inside;
}

/* Header Editorial Style */
.header-editorial {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li a {
    font-size: 0.95rem;
    color: #4a4a4a;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #8b4513;
}

/* Editorial Container */
.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.story-flow {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 2px;
}

/* Hero Narrative */
.hero-narrative {
    margin-bottom: 3rem;
    text-align: center;
}

.hero-narrative h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 400;
}

.content-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #3a3a3a;
    font-weight: 600;
}

.content-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    margin-top: 1.2rem;
    color: #3a3a3a;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-block ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

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

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 3px;
}

.inline-image-small {
    margin: 2rem auto;
    max-width: 500px;
    border-radius: 3px;
}

/* Image Grid */
.image-grid {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.grid-image {
    flex: 1;
    min-width: 280px;
    border-radius: 3px;
}

/* Visual Break */
.visual-break {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Testimonials */
.testimonial-inline {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-left: 3px solid #8b4513;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.testimonial {
    font-style: italic;
    color: #555;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #8b4513;
    margin: 1.5rem 0;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.trust-card {
    padding: 1.5rem;
    background-color: #f7f7f7;
    border-radius: 3px;
}

.trust-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
}

.trust-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    margin: 3rem 0;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 3px;
    border: 1px solid #e5e5e5;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-item p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1.5rem 0;
}

/* Detailed Service Items */
.service-item-detailed {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item-detailed h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-image {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 3px;
}

.service-features {
    list-style: none;
    padding: 1rem;
    background-color: #f7f7f7;
    border-radius: 3px;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-select-service,
.btn-cta,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #8b4513;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-select-service:hover,
.btn-cta:hover,
.btn-submit:hover {
    background-color: #5d2f0e;
}

/* CTA Inline */
.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #8b4513;
    color: #fff;
    border-radius: 3px;
    font-size: 1rem;
    margin: 1.5rem 0;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #5d2f0e;
}

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

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3a3a3a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
}

/* Disclaimer */
.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #f4f4f4;
    border-left: 3px solid #999;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.contact-item p {
    color: #555;
    margin-bottom: 0.5rem;
}

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

.contact-box {
    padding: 1.5rem;
    background-color: #f7f7f7;
    border-radius: 3px;
    margin: 2rem 0;
}

.contact-box h3 {
    margin-bottom: 1rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #2c2c2c;
}

.faq-item p {
    color: #555;
}

/* Info List */
.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

/* Thanks Section */
.thanks-section {
    padding: 3rem 0;
}

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

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

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

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

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

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

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

.footer-section ul li a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #8b4513;
    color: #fff;
}

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

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

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

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

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

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

    .lead-text {
        font-size: 1.1rem;
    }

    .story-flow {
        padding: 1.5rem;
    }

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

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

    .image-grid {
        flex-direction: column;
    }

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

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

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-narrative h1 {
        font-size: 1.75rem;
    }

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