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

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

.ad-disclosure {
    background-color: #f4f1ea;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd4;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e5dc;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    font-weight: 400;
}

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

.story-intro,
.problem-section,
.insight-section,
.solution-reveal,
.testimonials-inline,
.benefits-reveal,
.pricing-reveal,
.order-form-section,
.disclaimer-section,
.references-section {
    padding: 60px 0;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 32px;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.editorial-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    margin-top: 48px;
    font-weight: 400;
    color: #2c2c2c;
}

.editorial-content h3 {
    font-size: 24px;
    margin-bottom: 18px;
    margin-top: 32px;
    font-weight: 500;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 36px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e5dc;
}

.citation {
    color: #5a7a9f;
    text-decoration: none;
    font-weight: 500;
}

.citation:hover {
    text-decoration: underline;
}

.feature-box {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f8f5;
    border-left: 4px solid #c9a86a;
}

.feature-box img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e5dc;
}

.feature-box h3 {
    margin-top: 0;
}

.testimonial {
    margin: 36px 0;
    padding: 28px;
    background-color: #fafaf8;
    border-left: 3px solid #d4c5a0;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.benefit-list {
    margin: 28px 0;
    padding-left: 24px;
}

.benefit-list li {
    margin-bottom: 14px;
    font-size: 18px;
}

.price-card {
    margin: 32px 0;
    padding: 28px;
    background-color: #fff;
    border: 1px solid #e0ddd4;
    border-radius: 6px;
}

.price-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #c9a86a;
    margin: 16px 0;
}

.featured-card {
    border: 2px solid #c9a86a;
    background-color: #fefdfb;
}

.select-service-btn,
.submit-btn {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-family: inherit;
}

.select-service-btn:hover,
.submit-btn:hover {
    background-color: #3f3f3f;
}

.order-form {
    margin-top: 32px;
    padding: 36px;
    background-color: #f9f8f5;
    border-radius: 6px;
}

.selected-service-display {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e0ddd4;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0cfc9;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f1ea;
    border-radius: 4px;
}

.references-section {
    background-color: #fafaf8;
    padding: 48px 0;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 15px;
}

.references-list a {
    color: #5a7a9f;
    text-decoration: none;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #c9c9c9;
    padding: 48px 0 24px;
    margin-top: 80px;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

.footer-col a {
    color: #c9c9c9;
    text-decoration: none;
    font-size: 15px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 24px 30px 0;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px;
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 15px;
}

.cookie-content a {
    color: #c9a86a;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    transition: opacity 0.2s;
}

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

.cookie-btn.accept {
    background-color: #c9a86a;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.page-header {
    padding: 60px 0 40px;
    background-color: #f9f8f5;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: #666;
}

.legal-page .legal-content {
    padding: 48px 0;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-content li {
    margin-bottom: 10px;
}

.value-item {
    margin: 36px 0;
    padding: 24px;
    background-color: #fafaf8;
    border-radius: 4px;
}

.value-item h3 {
    margin-top: 0;
    color: #2c2c2c;
}

.contact-block {
    margin: 36px 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.contact-block h3 {
    font-size: 19px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.cta-section {
    margin: 48px 0;
    text-align: center;
}

.cta-text {
    font-size: 22px;
    margin-bottom: 24px;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin: 8px;
}

.cta-link:hover {
    background-color: #3f3f3f;
}

.cta-link.secondary {
    background-color: #c9a86a;
}

.cta-link.secondary:hover {
    background-color: #b59658;
}

.product-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e8e8e8;
}

.product-detail:last-of-type {
    border-bottom: none;
}

.price-box {
    margin: 32px 0;
    padding: 24px;
    background-color: #f9f8f5;
    border-radius: 6px;
    border: 1px solid #e0ddd4;
}

.price-label {
    font-size: 18px;
    margin-bottom: 8px;
}

.package-info {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.price-box.featured {
    border: 2px solid #c9a86a;
    background-color: #fefdfb;
}

.featured-product {
    background-color: #fafaf8;
    padding: 40px;
    border-radius: 8px;
}

.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-message {
    margin: 40px 0;
    padding: 32px;
    background-color: #f9f8f5;
    border-radius: 6px;
}

.next-steps {
    margin: 48px 0;
    text-align: left;
    padding: 32px;
    background-color: #fafaf8;
    border-radius: 6px;
}

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

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 17px;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .narrow-text {
        padding: 0 20px;
    }

    .editorial-content h2 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 20px;
    }

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}