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

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

.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Helvetica', sans-serif;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.editorial-hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d4c5b9;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

.hero-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

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

.story-intro {
    margin-bottom: 3rem;
}

.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.editorial-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-figure {
    margin: 3rem 0;
    background-color: #e8e4df;
}

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

.inline-figure figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.problem-section,
.solution-narrative,
.trust-building,
.services-reveal {
    margin-top: 4rem;
}

.editorial-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.insight-box {
    background: #f7f5f2;
    border-left: 4px solid #2c2c2c;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-box p {
    margin: 0;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
    background-color: #e8e4df;
    object-fit: cover;
}

.testimonial-inline {
    border-left: 3px solid #2c2c2c;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.15rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.benefit-list {
    margin: 2.5rem 0;
}

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

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.benefit-item p {
    margin: 0;
    color: #555;
}

.service-cards-editorial {
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #2c2c2c;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.cta-service {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.cta-service:hover {
    background: #000;
}

.form-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

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

.selected-service-display {
    background: #f0f0f0;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

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

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

.submit-btn {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.submit-btn:hover {
    background: #000;
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.final-thought {
    margin-top: 4rem;
    font-style: italic;
    color: #666;
    text-align: center;
    font-size: 1.2rem;
}

.site-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto 1rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.cookie-accept {
    background: #fff;
    color: #2c2c2c;
}

.cookie-accept:hover {
    background: #f0f0f0;
}

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

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

.contact-info-section {
    margin: 2rem 0;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-detail p {
    margin: 0;
    color: #555;
}

.thanks-container {
    text-align: left;
}

.cta-container {
    margin-top: 3rem;
    text-align: center;
}

.cta-container .submit-btn {
    display: inline-block;
    text-decoration: none;
}

.legal-page h1 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

    .editorial-content h2 {
        font-size: 1.5rem;
    }

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

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