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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Editorial Flow Layout */
.editorial-flow {
    min-height: 100vh;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 3rem 0 4rem;
}

.hero-image-wrapper {
    margin-bottom: 2.5rem;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Narrative Sections */
.narrative-section {
    padding: 4rem 0;
    border-top: 1px solid #e5e5e5;
}

.narrative-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrative-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* CTA Elements */
.cta-inline {
    margin: 2rem 0;
}

.btn-text-link {
    font-size: 1.05rem;
    color: #0066cc;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #004499;
    opacity: 1;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    opacity: 1;
}

/* Services Preview Editorial */
.services-preview-editorial {
    padding: 4rem 0;
    background-color: #fafafa;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

.service-story-block {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-story-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-image {
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-story-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066cc;
    margin-top: 1.5rem;
}

/* Approach Narrative */
.approach-narrative {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cta-block-editorial {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.cta-block-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-block-editorial p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Testimonials */
.testimonials-editorial {
    padding: 4rem 0;
    background-color: #fafafa;
}

.testimonial-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 3px solid #1a1a1a;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.editorial-form button[type="submit"] {
    margin-top: 1rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Page Header Editorial */
.page-header-editorial {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.legal-subtitle,
.legal-update {
    font-size: 0.95rem;
    color: #666;
}

/* Services Detailed Editorial */
.services-detailed-editorial {
    padding: 3rem 0;
}

.service-detail-block {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

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

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.note-text {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.response-info {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.response-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.response-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.contact-approach-section {
    padding: 3rem 0;
    background-color: #fafafa;
}

/* Thanks Page */
.thanks-message-editorial {
    padding: 4rem 0;
}

.thanks-details {
    margin-top: 2rem;
}

.thanks-details h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-details h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.next-steps {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.thanks-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.thanks-footer p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Legal Pages */
.legal-page {
    background-color: #fafafa;
}

.legal-content-section {
    padding: 3rem 0 5rem;
}

.legal-content-section h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content-section h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #333;
}

.legal-content-section ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content-section li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-cookie:not(.secondary) {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie:not(.secondary):hover {
    background-color: #e5e5e5;
}

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

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    font-size: 0.95rem;
    color: #ccc;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }

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

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

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

    .narrative-section h2,
    .service-detail-block h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

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

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

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