/* 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: #2c2c2c;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d4f;
}

ul {
    list-style-position: inside;
}

/* Navigation - Minimal Editorial Style */
.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a5f7a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

/* Article Hero */
.article-hero {
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e8e8e8;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.article-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(26, 95, 122, 0.1);
    border-radius: 3px;
}

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #5a5a5a;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.author-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: #7a7a7a;
}

.separator {
    color: #d0d0d0;
}

/* Article Body - Narrow Editorial Layout */
.article-body {
    padding: 3rem 1.5rem 5rem;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.article-body h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.article-body h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.article-body strong {
    font-weight: 600;
    color: #2a2a2a;
}

/* Inline Images - Editorial Style */
.article-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-image img {
    width: 100%;
    height: auto;
    background: #f0f0f0;
}

/* Blockquotes */
blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #1a5f7a;
    background: #f8f9fa;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
}

/* Inline CTAs - Inside Content */
.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f7f9 0%, #e8f3f6 100%);
    border-radius: 6px;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #0d3d4f;
}

/* Insights List */
.insights-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.insights-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.insights-list li:last-child {
    border-bottom: none;
}

/* Trust Signals */
.trust-signal {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #1a5f7a;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.trust-content .trust-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #fafafa;
    border-left: 3px solid #1a5f7a;
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: #7a7a7a;
    font-weight: 500;
}

/* Section CTA Inline */
.section-cta-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4f 100%);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.section-cta-inline p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #ffffff;
    color: #1a5f7a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Services Editorial Cards */
.services-editorial {
    margin-top: 3rem;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    border-color: #1a5f7a;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.service-card-editorial > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-card-editorial ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-card-editorial ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d0d0d0;
}

.service-duration {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 500;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #0d3d4f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

/* Form Section */
.form-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #1a5f7a;
}

.form-section h2 {
    margin-top: 0;
}

#selected-service-display {
    color: #1a5f7a;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0d3d4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.3);
}

/* Urgency Block */
.urgency-block {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff9e6;
    border: 2px solid #f4d03f;
    border-radius: 8px;
}

.urgency-block h3 {
    margin-top: 0;
    color: #2a2a2a;
}

.urgency-block p {
    font-size: 1.05rem;
}

.cta-urgency {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.8rem;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: #0d3d4f;
    transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4f 100%);
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.final-cta-section h3 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a5f7a;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(26, 95, 122, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #0d3d4f;
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.5);
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

.footer-section ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0d3d4f;
}

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

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

/* Thanks Page */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thanks-content {
    max-width: 680px;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.thanks-service-reference {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #e8f3f6;
    border-radius: 6px;
    display: none;
}

.thanks-service-reference p {
    margin: 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0d3d4f;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #1a5f7a;
    color: #ffffff;
}

.thanks-additional {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff9e6;
    border-radius: 8px;
    text-align: left;
}

.thanks-additional h3 {
    margin-top: 0;
    color: #2a2a2a;
}

/* Contact Page Styles */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info-section,
.contact-expectations {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a5f7a;
}

.contact-detail p {
    margin-bottom: 0.8rem;
}

.contact-detail a {
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
}

.expectation-item {
    margin-bottom: 2rem;
}

.expectation-item h3 {
    margin-top: 0;
}

.contact-alternatives,
.contact-faq {
    margin-top: 3rem;
}

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

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

.faq-item h3 {
    margin-bottom: 0.8rem;
    color: #1a5f7a;
}

/* Legal Pages */
.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-update {
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
}

.legal-page h3 {
    margin-top: 2rem;
}

.legal-page h4 {
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .article-hero h1 {
        font-size: 3rem;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info-section,
    .contact-expectations {
        flex: 1;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .article-hero {
        padding: 3rem 1.5rem 2rem;
    }

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

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-body {
        padding: 2rem 1.5rem 3rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

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

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

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