* {
    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;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
}

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

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.story-block,
.insight-block,
.problem-amplification,
.trust-building,
.values-block,
.commitment-section,
.contact-note,
.thanks-content {
    margin-bottom: 3rem;
}

.story-block h2,
.insight-block h2,
.problem-amplification h2,
.trust-building h2,
.values-block h2,
.commitment-section h2,
.next-steps h2,
.cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-block p,
.insight-block p,
.problem-amplification p,
.trust-building p,
.values-block p,
.commitment-section p,
.contact-note p,
.thanks-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.insight-block ul,
.values-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.insight-block li,
.values-block li {
    margin-bottom: 0.5rem;
}

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

.inline-image.centered {
    text-align: center;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-break {
    margin: 4rem 0;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.cta-link {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin: 0 0.5rem;
}

.cta-link:hover {
    background-color: #8b7355;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f8f6;
    border-left: 4px solid #8b7355;
}

.testimonial-inline blockquote {
    font-style: italic;
}

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

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

.services-reveal {
    margin: 4rem 0;
}

.services-reveal h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.service-card.editorial {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.service-card.editorial.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8b7355;
}

.select-service {
    padding: 0.75rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #8b7355;
}

.service-image {
    flex: 1;
    background-color: #f4f1ed;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.order-section {
    margin: 5rem 0;
    padding: 3rem;
    background-color: #f9f8f6;
}

.order-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.order-section p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.order-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.disclaimer-section {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #f4f4f4;
    border: 1px solid #e0e0e0;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #444;
}

.contact-info {
    margin: 3rem 0;
}

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

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.contact-note a,
.thanks-content a {
    color: #8b7355;
    text-decoration: underline;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f8f6;
}

.next-steps ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-page .legal-section {
    margin-bottom: 3rem;
}

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

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.legal-page p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f8f6;
}

.cta-section a {
    color: #8b7355;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .service-card.editorial,
    .service-card.editorial.reverse {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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