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

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.editorial-hero {
    margin-bottom: 3rem;
    text-align: center;
}

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

.lead-text {
    font-size: 1.2rem;
    color: #5a6c7d;
    font-style: italic;
}

.editorial-image {
    margin: 3rem 0;
    background-color: #e8ede f;
}

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

.editorial-image-small {
    margin: 2rem auto;
    max-width: 500px;
    background-color: #e8edef;
}

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

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

.editorial-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.editorial-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.editorial-section a {
    color: #2c5f2d;
    text-decoration: underline;
}

.inline-cta {
    background-color: #f0f8f0;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid #2c5f2d;
}

.inline-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234d24;
}

.service-story {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-story h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-story p {
    margin-bottom: 0.8rem;
}

.service-ingredients {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-style: italic;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5f2d;
    margin: 1rem 0;
}

.btn-select-service {
    padding: 0.8rem 1.8rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #234d24;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #2c5f2d;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 0.5rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

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

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234d24;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #f0e5c8;
}

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

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

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    font-size: 0.9rem;
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #2c5f2d;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #2c5f2d;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #2c5f2d;
}

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

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234d24;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

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

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

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

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

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

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