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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

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

a:hover {
    color: #8b7355;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie {
    background: #8b7355;
    color: white;
}

.btn-cookie:hover {
    background: #6f5a44;
}

.btn-cookie-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation - Editorial Style */
.nav-editorial {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #5a6c7d;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b7355;
}

/* Editorial Wrapper */
.editorial-wrapper {
    max-width: 100%;
    background: white;
}

/* Hero Editorial */
.hero-editorial {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 30px 60px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
}

/* Page Header Editorial */
.page-header-editorial {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    font-weight: 400;
}

/* Story Section - Narrow Centered */
.story-section {
    padding: 60px 30px;
    background: white;
}

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

.story-intro {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 400;
}

.story-heading {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

/* Inline Images */
.inline-image {
    margin: 50px 0;
}

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

.inline-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #7a7a7a;
    text-align: center;
    font-style: italic;
}

/* Problem Section */
.problem-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.section-title-editorial {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #8b7355;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

/* Services Preview */
.services-preview {
    padding: 60px 30px;
    background: white;
}

.service-list-editorial {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #8b7355;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

/* Detailed Services */
.services-detailed {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    padding: 40px 0;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-detail-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
}

.service-detail p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-includes {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.service-detail ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-detail li {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.service-note {
    font-size: 16px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 20px;
}

.pricing-notes {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin-top: 50px;
}

.pricing-notes h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.pricing-notes ul {
    margin-left: 25px;
}

.pricing-notes li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

/* Trust Section - Testimonials */
.trust-section {
    padding: 60px 30px;
    background: #f5f3f0;
}

.testimonial-editorial {
    background: white;
    padding: 35px;
    margin: 30px 0;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.testimonial-editorial p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-editorial cite {
    font-size: 15px;
    color: #7a7a7a;
    font-style: normal;
    font-weight: 600;
}

/* Why Section */
.why-section {
    padding: 60px 30px;
    background: white;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
    font-size: 20px;
}

/* Form Section */
.form-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.form-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
    text-align: center;
}

.editorial-form {
    background: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-text-link {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #8b7355;
    color: white;
}

.btn-primary:hover {
    background: #6f5a44;
    color: white;
}

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

.btn-secondary:hover {
    background: #8b7355;
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-text-link {
    background: none;
    color: #8b7355;
    padding: 0;
    font-size: 18px;
    border-bottom: 2px solid #8b7355;
    border-radius: 0;
}

.btn-text-link:hover {
    color: #6f5a44;
    border-color: #6f5a44;
}

/* CTAs */
.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-centered {
    text-align: center;
    margin: 50px 0;
}

.cta-centered h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c3e50;
}

/* Final CTA */
.final-cta {
    padding: 80px 30px;
    background: #2c3e50;
    text-align: center;
}

.final-title {
    font-size: 38px;
    line-height: 1.3;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
}

.final-cta .btn-large {
    background: #8b7355;
    color: white;
}

.final-cta .btn-large:hover {
    background: #6f5a44;
}

/* About Features */
.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
}

.about-features li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #8b7355;
    font-size: 24px;
    line-height: 1.6;
}

/* Contact Page */
.contact-info-box {
    background: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
    border-left: 4px solid #8b7355;
}

.contact-info-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-address {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-note {
    font-size: 15px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 15px;
}

.hours-table {
    width: 100%;
    margin: 15px 0;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 17px;
    color: #3a3a3a;
}

.hours-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.process-list {
    margin: 20px 0;
    padding-left: 25px;
}

.process-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-cta {
    background: #f9f9f9;
    padding: 35px;
    margin: 40px 0;
    text-align: center;
    border-radius: 4px;
}

.contact-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta p {
    margin-bottom: 25px;
}

.contact-map-placeholder {
    background: #e8e8e8;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    border-radius: 4px;
}

.map-note {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 30px;
    background: white;
}

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

.thanks-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-service-info {
    background: #f9f9f9;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
    border-left: 4px solid #8b7355;
}

.thanks-service-info p {
    font-size: 18px;
    color: #2c3e50;
    margin: 0;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.next-steps-list {
    margin: 20px 0;
    padding-left: 25px;
}

.next-steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.thanks-contact-alt {
    background: #f5f3f0;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.thanks-contact-alt p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

/* Footer */
.footer-editorial {
    background: #2c3e50;
    color: white;
    padding: 50px 30px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b8c5d0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #b8c5d0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #3d5266;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-header-editorial h1 {
        font-size: 32px;
    }

    .story-intro {
        font-size: 19px;
    }

    .story-heading {
        font-size: 26px;
    }

    .section-title-editorial {
        font-size: 28px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-title {
        font-size: 28px;
    }

    .thanks-title {
        font-size: 32px;
    }

    .editorial-form {
        padding: 25px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .story-section p {
        font-size: 17px;
    }

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