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

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

/* Navigation - Editorial Style */
.editorial-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Editorial Container */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.article-hero {
    padding: 48px 0 64px;
}

.category-tag {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d32f2f;
    margin-bottom: 16px;
    font-weight: 600;
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.author-info {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #888;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 4px;
}

/* Content Sections */
.content-section {
    padding: 48px 0;
}

.content-section.grey-bg {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    background: #f9f9f9;
}

.article-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-text h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.article-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.article-text strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Quote Block */
.quote-block {
    border-left: 4px solid #d32f2f;
    padding-left: 24px;
    margin: 36px 0;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #2c2c2c;
}

.quote-block cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #666;
}

/* Inline CTA */
.inline-cta {
    background: #fff8e1;
    border-left: 4px solid #ffa000;
    padding: 24px;
    margin: 40px 0;
}

.inline-cta p {
    margin-bottom: 12px;
}

.inline-cta.highlight {
    background: #e3f2fd;
    border-left: 4px solid #1976d2;
}

.inline-cta h3 {
    margin-bottom: 12px;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #d32f2f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #b71c1c;
}

.cta-button.large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Insight Grid */
.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.insight-card {
    border: 1px solid #e0e0e0;
    padding: 24px;
    background: #ffffff;
}

.insight-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #d32f2f;
}

.insight-card p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Image Section */
.image-section {
    padding: 64px 0;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.image-caption {
    margin-top: 12px;
}

.image-caption p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Styled List */
.styled-list {
    margin: 24px 0;
    padding-left: 24px;
}

.styled-list li {
    margin-bottom: 12px;
    font-size: 18px;
}

/* Testimonials */
.testimonial-section {
    background: #f5f5f5;
    padding: 64px 24px;
    margin: 64px -24px;
}

.testimonial-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    background: #ffffff;
    padding: 32px;
    border-left: 4px solid #d32f2f;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.testimonial cite {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: normal;
}

/* Services Preview */
.services-preview-section {
    background: #fafafa;
    padding: 64px 0;
    margin: 64px -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.services-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0 48px;
}

.service-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    flex-grow: 1;
}

.service-item .price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #d32f2f;
}

/* Form */
.main-form {
    background: #ffffff;
    border: 2px solid #d32f2f;
    padding: 40px;
    margin-top: 48px;
}

.main-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s;
}

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

.submit-button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #d32f2f;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-button:hover {
    background: #b71c1c;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
}

.final-cta.center {
    text-align: center;
}

/* Footer */
.editorial-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 64px 24px 24px;
}

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

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

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

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

.cookie-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background: #4caf50;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #666;
    color: #ffffff;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #d32f2f;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 90;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

    .article-hero h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .article-text h2 {
        font-size: 26px;
    }

    .article-text p {
        font-size: 17px;
    }

    .quote-block {
        font-size: 18px;
    }

    .main-form {
        padding: 24px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
        text-align: center;
    }
}
