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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e8e6e1;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.editorial-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 1px;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
}

.story-intro {
    margin-bottom: 60px;
}

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

.editorial-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #4a4a4a;
}

.content-block {
    margin: 60px 0;
}

.content-block h2,
.insight-section h2,
.services-reveal h2,
.form-section h2,
.final-cta-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #2c2c2c;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #e8e6e1;
    overflow: hidden;
}

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

.insight-section {
    background-color: #f7f5f1;
    padding: 48px 40px;
    margin: 60px -40px;
    border-left: 4px solid #a89f91;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 32px;
    background-color: #fff;
    border-left: 3px solid #c9c1b5;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonial-inline footer {
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: #7a7a7a;
}

.services-reveal {
    margin: 80px 0;
}

.section-intro {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 48px;
}

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

.service-card {
    background-color: #fff;
    padding: 0;
    border: 1px solid #e8e6e1;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d4cec3;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px 24px;
    font-weight: 500;
    color: #2c2c2c;
}

.service-card p {
    margin: 0 24px 20px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 24px 24px 16px 24px;
}

.cta-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px 0;
    background-color: #5a5a5a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: #3a3a3a;
}

.form-section {
    margin: 80px 0;
    padding: 48px 40px;
    background-color: #f7f5f1;
    margin-left: -40px;
    margin-right: -40px;
}

.selected-price {
    font-size: 18px;
    margin-bottom: 32px;
    color: #2c2c2c;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #3a3a3a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0cbc3;
    background-color: #fff;
    font-size: 16px;
    font-family: inherit;
    color: #2c2c2c;
}

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

.cta-submit {
    width: 100%;
    padding: 16px 0;
    background-color: #5a5a5a;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 16px;
}

.cta-submit:hover {
    background-color: #3a3a3a;
}

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

.cta-scroll-up {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-scroll-up:hover {
    background-color: #1a1a1a;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 32px;
    background-color: #f0ede8;
    border-top: 1px solid #d0cbc3;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.site-footer {
    background-color: #2c2c2c;
    color: #b8b8b8;
    padding: 48px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 13px;
    color: #8a8a8a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #5a5a5a;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #3a3a3a;
}

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

.cookie-reject:hover {
    background-color: #3a3a3a;
    color: #fff;
}

.thanks-message {
    max-width: 680px;
    margin: 120px auto;
    padding: 80px 40px;
    text-align: center;
    background-color: #f7f5f1;
}

.thanks-message h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-message a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 40px;
    background-color: #5a5a5a;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-message a:hover {
    background-color: #3a3a3a;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 60px 20px;
    }

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

    .insight-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 32px 20px;
    }

    .form-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

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