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

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

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

a:hover {
    color: #5c3a28;
}

/* Navigation - Minimal Style for Editorial */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.05em;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2a2a2a;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b5a3c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.96);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Editorial Content Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Text Narrow - Core of Editorial Layout */
.text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section - Editorial Style */
.article-hero {
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

/* Story Sections */
.story-intro,
.insight-block,
.transformation-story,
.problem-amplification,
.reveal-section,
.testimonial-flow,
.trust-section,
.closing-thought {
    background-color: #ffffff;
}

.story-intro p,
.text-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.dropcap::first-letter {
    font-size: 3.5rem;
    line-height: 0.9;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 700;
    color: #8b5a3c;
}

/* Headings in Text Narrow */
.text-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.text-narrow h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

/* Inline Images - Editorial Style */
.inline-image,
.inline-image-offset {
    margin: 3rem 0;
}

.inline-image img,
.inline-image-offset img {
    width: 100%;
    border-radius: 2px;
}

.inline-image-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 2rem;
}

/* Section with Image Left */
.transformation-story {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-image-left {
    max-width: 450px;
    margin: 0 auto 2rem;
}

.section-image-left img {
    width: 100%;
    border-radius: 2px;
}

/* CTAs - Inline Text Style */
.cta-inline-text {
    max-width: 680px;
    margin: 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.link-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5a3c;
    border-bottom: 2px solid #8b5a3c;
    transition: all 0.3s ease;
}

.link-cta:hover {
    color: #5c3a28;
    border-bottom-color: #5c3a28;
}

/* CTA Card Inline */
.cta-card-inline {
    max-width: 680px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.cta-card {
    background-color: #f5f1ed;
    padding: 3rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    border-left: 4px solid #8b5a3c;
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Problem List */
.problem-list {
    margin: 2.5rem 0;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.problem-item .number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #8b5a3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

/* Testimonials */
.testimonial {
    background-color: #f9f7f5;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid #8b5a3c;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
}

/* Services Section - Editorial Grid */
.services-reveal {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.section-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-top: 1rem;
}

.services-grid-editorial {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-editorial {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-editorial figure {
    width: 100%;
    overflow: hidden;
}

.service-card-editorial figure img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-editorial:hover figure img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem 2.5rem;
}

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

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5a3c;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.price-before {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 400;
}

.savings-badge {
    display: inline-block;
    background-color: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.service-card-editorial.featured {
    border: 2px solid #8b5a3c;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-select-service,
.btn-submit,
.btn-sticky {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #8b5a3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5c3a28;
    color: #ffffff;
}

.btn-secondary {
    background-color: #4a4a4a;
    color: #ffffff;
}

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

.btn-outline {
    background-color: transparent;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
}

.btn-outline:hover {
    background-color: #8b5a3c;
    color: #ffffff;
}

.btn-select-service {
    width: 100%;
    background-color: #8b5a3c;
    color: #ffffff;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: #5c3a28;
}

/* Urgency Section */
.urgency-section {
    background-color: #fff9f0;
    padding: 3rem 2rem;
}

.urgency-box {
    background-color: #fffbf5;
    border: 2px solid #f0ad4e;
    padding: 2rem;
    border-radius: 4px;
}

.urgency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d9534f;
}

.urgency-box p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin: 0;
}

/* Trust Section */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.badge {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
    background-color: #f5f1ed;
    border-radius: 4px;
}

.badge strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.badge span {
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* Form Section */
.final-cta-section {
    background-color: #f5f1ed;
    padding: 4rem 2rem;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.form-privacy {
    margin: 1.5rem 0;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background-color: #8b5a3c;
    color: #ffffff;
    padding: 1rem;
    font-size: 1.1rem;
}

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

/* Closing Quote */
.closing-thought {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.closing-quote {
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.95);
    padding: 1rem 2rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.sticky-content span {
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.btn-sticky {
    background-color: #8b5a3c;
    color: #ffffff;
    padding: 0.8rem 2rem;
}

.btn-sticky:hover {
    background-color: #5c3a28;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #b0b0b0;
    font-family: 'Arial', sans-serif;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-family: 'Arial', sans-serif;
}

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

.page-header-narrow h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-header-narrow .lead {
    font-size: 1.2rem;
    color: #4a4a4a;
    font-style: italic;
}

.update-date {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
    margin-top: 0.5rem;
}

/* Legal Content */
.legal-content .text-narrow {
    max-width: 800px;
}

.legal-section {
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2a2a2a;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

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

.cookie-table td {
    color: #4a4a4a;
}

/* Contact Page */
.contact-section {
    background-color: #ffffff;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.small-text {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
    margin-top: 0.5rem;
}

/* Info Box */
.info-box {
    background-color: #e8f4f8;
    border-left: 4px solid #5bc0de;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.info-box ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* CTA Box Center */
.cta-box-center {
    text-align: center;
    background-color: #f5f1ed;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-box-center h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box-center p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
}

.thanks-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-content {
    text-align: left;
    margin-top: 3rem;
}

.thanks-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

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

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #8b5a3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.thanks-steps p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Services Detail Page */
.services-detail-section {
    background-color: #ffffff;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .article-hero h1 {
        font-size: 3.5rem;
    }

    .hero-lead {
        font-size: 1.5rem;
    }

    .text-narrow {
        padding: 4rem 2rem;
    }

    .transformation-story {
        flex-direction: row;
        align-items: flex-start;
    }

    .section-image-left {
        margin: 0;
        flex-shrink: 0;
    }

    .services-grid-editorial {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .service-card-editorial {
        flex: 1 1 calc(50% - 1rem);
        min-width: 400px;
    }

    .contact-info-blocks {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-block {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

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

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

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

    .problem-item {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-content {
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
    }

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

    .service-card-editorial {
        min-width: 100%;
    }
}

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

    .text-narrow {
        padding: 2rem 1rem;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
    }

    .editorial-form {
        padding: 1.5rem;
    }
}