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

.ad-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
}

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

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

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

.editorial-content {
    max-width: 100%;
    background-color: #fff;
}

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

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background-color: rgba(44, 44, 44, 0.75);
    padding: 40px 60px;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 20px;
    font-style: italic;
}

.narrative-intro,
.problem-reveal,
.solution-narrative,
.trust-building,
.process-explanation,
.disclaimer-section {
    padding: 60px 0;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.text-column p {
    margin-bottom: 20px;
    font-size: 18px;
}

.insight-block {
    background-color: #f8f6f3;
    padding: 80px 0;
}

.insight-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e3dd;
    object-fit: cover;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.text-column h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: normal;
}

.insight-list {
    margin: 30px 0;
    padding-left: 25px;
}

.insight-list li {
    margin-bottom: 12px;
    font-size: 18px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    background-color: #e8e3dd;
    object-fit: cover;
}

.services-inline {
    background-color: #2c2c2c;
    color: #fff;
    padding: 80px 0;
}

.services-inline .text-column {
    color: #fff;
}

.services-inline h2 {
    color: #fff;
}

.service-cards {
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    color: #2c2c2c;
    padding: 30px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-select {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-select:hover {
    background-color: #6d5a42;
}

.testimonial {
    border-left: 4px solid #8b7355;
    padding-left: 25px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.cta-narrative {
    background-color: #8b7355;
    padding: 80px 0;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 15px;
}

.contact-form-section {
    background-color: #f8f6f3;
    padding: 60px 0;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editorial-form label {
    font-size: 16px;
    font-weight: bold;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.submit-btn {
    background-color: #2c2c2c;
    color: #fff;
    padding: 15px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

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

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 20px 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #999;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

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

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

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

.cookie-accept:hover {
    background-color: #6d5a42;
}

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

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

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

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-message a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-message a:hover {
    background-color: #6d5a42;
}

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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