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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #6c757d;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

/* Hero Section */
.article-hero {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-text-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.article-hero-small {
    margin-bottom: 50px;
}

.article-hero-small h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

/* Story Section - Narrow Text */
.story-section {
    margin-bottom: 50px;
}

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

.narrow-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.narrow-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #333;
}

.narrow-text ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.narrow-text li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #333;
}

/* Inline Images */
.inline-image-section {
    margin: 60px 0;
}

.inline-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    object-fit: cover;
}

/* Service Cards - Editorial Style */
.services-embedded {
    margin: 60px 0;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
    background-color: #fafafa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-select {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: #1a2633;
}

/* Form Section */
.form-section-embedded {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.editorial-form {
    max-width: 680px;
    margin: 30px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1a2633;
}

/* Trust Section */
.trust-section {
    margin: 60px 0;
}

/* Disclaimer */
.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c3e50;
    border-radius: 4px;
}

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

/* CTA Inline */
.cta-inline-section {
    margin: 50px 0;
    text-align: center;
}

.inline-cta {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

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

/* Service Detail Page */
.service-detail-section {
    margin: 60px 0;
}

.service-detail {
    margin-bottom: 30px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-features {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    color: #333;
}

/* Contact Page */
.contact-section {
    margin: 40px 0;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

/* Thanks Page */
.thanks-section {
    margin: 60px 0;
    text-align: center;
}

.thanks-info {
    margin: 40px 0;
    text-align: left;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.legal-section {
    margin: 40px 0;
}

/* Footer */
.footer-editorial {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 50px 30px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: opacity 0.3s ease;
}

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

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

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

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

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

    .narrow-text h2 {
        font-size: 1.6rem;
    }

    .editorial-container {
        padding: 30px 20px 60px;
    }

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

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

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

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

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