* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #d0d0d0;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.editorial-content {
    background-color: #ffffff;
}

.article-hero {
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
    margin-bottom: 2rem;
}

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

.hero-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.page-header {
    padding: 4rem 2rem 2rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.story-section {
    padding: 3rem 2rem 5rem;
}

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

.opening-graph {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    color: #333;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #3a3a3a;
}

.narrow-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.narrow-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    padding: 1rem;
    background-color: #f5f5f5;
}

.story-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    border-left: 4px solid #1a1a1a;
    background-color: #f8f8f8;
}

.story-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.story-quote cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.trust-indicator {
    background-color: #f0f4f8;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.trust-indicator h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.service-reveal {
    margin: 3rem 0;
}

.service-reveal h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-reveal p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 6px;
    position: relative;
}

.service-card.featured {
    border: 2px solid #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 3px;
    font-weight: 600;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #3a3a3a;
    font-size: 1rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-weight: 600;
}

.select-service-btn:hover {
    background-color: #333;
}

.final-cta-section {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
}

.final-cta-section h3 {
    margin-top: 0;
    text-align: center;
}

.final-cta-section > p {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    font-weight: 600;
}

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

.disclaimer-section {
    background-color: #fffbf0;
    border: 1px solid #e8d9a6;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.disclaimer-section h4 {
    margin-top: 0;
    color: #7a6a2e;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.references-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.references-section h4 {
    margin-top: 0;
}

.references-list {
    list-style: decimal;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #2563eb;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.email-display {
    color: #2a2a2a;
    font-weight: 600;
}

.faq-section {
    margin: 2rem 0;
}

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

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #1a1a1a;
}

.thanks-content {
    padding: 3rem 0;
}

.thanks-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.thanks-hero h1 {
    color: #2d7a3e;
}

.thanks-details h2 {
    margin-top: 0;
}

.next-steps {
    background-color: #f0f4f8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.next-steps h3 {
    margin-top: 0;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.next-steps a {
    color: #2563eb;
    text-decoration: none;
}

.next-steps a:hover {
    text-decoration: underline;
}

.contact-reminder {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    text-align: center;
}

.business-hours {
    font-size: 0.95rem;
    color: #666;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-details-legal {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #3a3a3a;
}

.editorial-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links 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.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

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

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

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

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .hero-intro {
        font-size: 1.1rem;
    }

    .hero-image-container {
        height: 300px;
    }

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

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

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

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

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

    .cookie-btn {
        width: 100%;
    }
}