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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

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

.story-header {
    margin-bottom: 3rem;
}

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

.subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
    width: 100%;
}

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

/* Text Blocks */
.text-block {
    margin-bottom: 2.5rem;
}

.text-block h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.text-block h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.text-block h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.6rem;
    margin-top: 1.2rem;
}

.text-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #34495e;
}

.text-block ul,
.text-block ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: #34495e;
}

.text-block strong {
    font-weight: 600;
    color: #2c3e50;
}

.text-block small {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
}

/* Insight Block */
.insight-block {
    background-color: #f8f9fa;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
}

.insight-block h2 {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.insight-block p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

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

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 2px solid #3498db;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Services Preview */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.service-card .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
}

/* Service Full */
.service-full {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-full:last-of-type {
    border-bottom: none;
}

.service-full h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-full p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
    margin-top: 1.2rem;
}

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

.contact-block {
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

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

/* Form Styles */
.editorial-form {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background-color: #fef9e7;
    border-left: 3px solid #f39c12;
    border-radius: 4px;
}

/* Legal Page */
.legal-page h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

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

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

    .ad-notice {
        width: 100%;
        text-align: center;
    }

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

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

    .subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .service-full {
        padding: 2rem 0;
    }

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

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.7rem;
    }

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

    .text-block p,
    .text-block li {
        font-size: 1rem;
    }

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

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