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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5490;
}

/* Editorial Navigation */
.nav-editorial {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s ease;
}

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

/* Editorial Content Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Story Header */
.story-header {
    margin-bottom: 3rem;
    text-align: center;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

/* Story Images */
.story-image {
    margin: 3rem 0;
}

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

.story-image-inline {
    margin: 2.5rem 0;
}

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

/* Story Sections */
.story-section {
    margin-bottom: 3.5rem;
}

.story-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
}

.story-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 400;
}

.story-section p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.story-section ul,
.story-section ol {
    margin-bottom: 1.25rem;
    margin-left: 2rem;
}

.story-section li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.insight-list {
    list-style: none;
    margin-left: 0;
}

.insight-list li {
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

/* Inline CTAs */
.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.125rem;
    color: #2980b9;
    font-weight: 600;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #1a5490;
    border-bottom-color: #1a5490;
}

/* Blockquotes and Testimonials */
blockquote {
    border-left: 4px solid #2980b9;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #555;
}

.testimonial-inline {
    font-size: 1.125rem;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #777;
}

.testimonial-block {
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.125rem;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

/* Special Section Blocks */
.insight-block {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.problem-amplification {
    background-color: #fff3cd;
    padding: 2rem;
    border-left: 4px solid #ffc107;
    margin: 3rem 0;
}

.trust-builder {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

/* Methodology and Process Steps */
.methodology {
    margin-top: 2rem;
}

.method-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.method-step:last-child {
    border-bottom: none;
}

.process-flow {
    margin-top: 2rem;
}

.process-step {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #2980b9;
    border-radius: 50%;
}

.timeline-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-step:last-child {
    border-bottom: none;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 0.75rem);
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
}

.benefit-item h4 {
    margin-top: 0;
    color: #2980b9;
}

/* Service Cards */
.services-pricing {
    margin: 3rem 0;
}

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

.service-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: #2980b9;
    background-color: #f8fbfd;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background-color: #2980b9;
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #1a1a1a;
}

.service-card h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.service-card ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
    margin: 1.5rem 0;
}

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

.btn-primary {
    background-color: #2980b9;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a5490;
    color: #fff;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
    color: #1a1a1a;
}

.btn-secondary.urgent {
    background-color: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.btn-secondary.urgent:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* CTA Sections */
.cta-section-inline {
    background-color: #2c3e50;
    color: #fff;
    padding: 2.5rem;
    border-radius: 6px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section-inline h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-section-inline p {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

/* Forms */
.form-section {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.form-section h2 {
    margin-bottom: 1rem;
}

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

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

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Info */
.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2980b9;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

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

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

.faq-item h4 {
    margin-top: 0;
    color: #2c3e50;
}

/* Closing Text */
.closing-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Legal Content */
.legal-content .story-section {
    margin-bottom: 2.5rem;
}

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

.legal-content h3 {
    font-size: 1.25rem;
}

/* Footer */
.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
}

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

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

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

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

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

.btn-cookie {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .story-header h1 {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1.125rem;
    }

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

    .story-section h2 {
        font-size: 1.625rem;
    }

    .story-section p,
    .story-section li {
        font-size: 1rem;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-cookie {
        width: 100%;
    }

    .contact-details {
        gap: 1.5rem;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}
