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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e6e1;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #8a7968;
    padding: 0.3rem 0.8rem;
    background-color: #f5f3ef;
    border-radius: 3px;
    border: 1px solid #e0dcd4;
}

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

.hero-editorial {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a2a23;
}

.lead-text {
    font-size: 1.25rem;
    color: #5a6b5e;
    line-height: 1.6;
}

.story-section {
    margin: 3rem 0;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a2a23;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inline-image {
    margin: 3rem -4rem;
    background-color: #e8e6e1;
}

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

.inline-medium {
    margin: 2rem 0;
}

.insight-block {
    background-color: #f5f3ef;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #7a4f3d;
}

.insight-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a2a23;
}

.insight-block p {
    font-size: 1rem;
    color: #5a6b5e;
}

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

.services-inline h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a2a23;
}

.service-card-editorial {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e6e1;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a2a23;
}

.service-card-editorial p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5a6b5e;
}

.price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #7a4f3d;
    margin-bottom: 1rem;
}

.cta-inline {
    background-color: #2c3e36;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-inline:hover {
    background-color: #1a2a23;
}

.testimonial-block {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 3px solid #7a4f3d;
}

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

.testimonial-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #2c3e36;
}

.testimonial-block cite {
    font-style: normal;
    color: #8a7968;
    font-size: 0.95rem;
}

.cta-block-editorial {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #2c3e36;
    color: #ffffff;
    text-align: center;
}

.cta-block-editorial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-block-editorial p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e8e6e1;
}

.cta-primary {
    background-color: #7a4f3d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-primary:hover {
    background-color: #5d3c2e;
}

.form-section-editorial {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e8e6e1;
}

.form-section-editorial h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a2a23;
}

.form-section-editorial label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e36;
}

.form-section-editorial input,
.form-section-editorial select,
.form-section-editorial textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #d0cdc5;
    font-family: inherit;
    font-size: 1rem;
}

.form-section-editorial textarea {
    resize: vertical;
}

.disclaimer-section {
    margin: 4rem 0;
    padding: 1.5rem;
    background-color: #f5f3ef;
    border-left: 3px solid #8a7968;
    font-size: 0.9rem;
    color: #5a6b5e;
}

.footer-editorial {
    background-color: #2c3e36;
    color: #e8e6e1;
    padding: 3rem 2rem 2rem;
}

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.8rem;
}

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

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #b8b5ad;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3d4f47;
    text-align: center;
    font-size: 0.85rem;
    color: #b8b5ad;
}

.footer-bottom p {
    margin-bottom: 0.3rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e8e6e1;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    color: #2c3e36;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.cookie-accept {
    background-color: #2c3e36;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a2a23;
}

.cookie-reject {
    background-color: #e8e6e1;
    color: #2c3e36;
}

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

.cookie-buttons a {
    color: #7a4f3d;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-buttons a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .inline-image {
        margin-left: -2rem;
        margin-right: -2rem;
    }

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

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

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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