* {
    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-disclosure {
    background-color: #f4f1e8;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd4;
}

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

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

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

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

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.editorial-hero {
    position: relative;
    margin-bottom: 60px;
    background-color: #d4c4a8;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 40px 40px;
}

.hero-overlay h1 {
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    font-weight: normal;
}

.editorial-intro {
    margin-bottom: 50px;
}

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

.editorial-content {
    margin-bottom: 50px;
}

.editorial-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: normal;
}

.editorial-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
    font-weight: normal;
}

.editorial-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.citation {
    color: #8b6f47;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.citation:hover {
    text-decoration: underline;
}

.editorial-image-block {
    margin: 60px 0;
    background-color: #f0ebe3;
}

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

.image-caption {
    padding: 16px 24px;
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.editorial-pullquote {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 3px solid #8b6f47;
    border-bottom: 3px solid #8b6f47;
}

.editorial-pullquote blockquote {
    font-size: 26px;
    line-height: 1.5;
    text-align: center;
    color: #1a1a1a;
    font-style: italic;
}

.inline-cta {
    text-align: center;
    margin: 40px 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #6f5838;
}

.ingredient-list {
    list-style: none;
    margin: 24px 0;
}

.ingredient-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 17px;
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.editorial-testimonial {
    margin: 60px 0;
    background-color: #f9f7f4;
    padding: 40px;
}

.testimonial-card {
    text-align: center;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
}

.editorial-benefits {
    margin: 70px 0;
}

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

.service-card-ed {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background-color: #f5f3ef;
}

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

.service-card-ed h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-desc {
    padding: 0 24px;
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}

.service-price {
    padding: 0 24px;
    font-size: 20px;
    font-weight: bold;
    color: #8b6f47;
    margin-bottom: 20px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6f5838;
}

.select-service.selected {
    background-color: #4a7c59;
}

.editorial-form {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #f0ebe3;
}

.editorial-form h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.editorial-form > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form-editorial {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6f5838;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    padding: 20px;
    background-color: #f9f7f4;
    border-left: 3px solid #8b6f47;
    line-height: 1.6;
}

.editorial-references {
    margin: 50px 0;
    padding: 30px;
    background-color: #f5f3ef;
}

.editorial-references h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.references-list a {
    color: #8b6f47;
    text-decoration: none;
}

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

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #8b6f47;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #8b6f47;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

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

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

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

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

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

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

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

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

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

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

.thanks-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #f0ebe3;
    text-align: center;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #444;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #6f5838;
}

.page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
}

.page-container h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #333;
}

.page-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.page-container ul,
.page-container ol {
    margin: 16px 0 16px 24px;
    font-size: 17px;
    line-height: 1.7;
}

.page-container li {
    margin-bottom: 8px;
}

.contact-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-info {
    background-color: #f0ebe3;
    padding: 32px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #444;
}

.contact-info strong {
    color: #1a1a1a;
}

.services-page {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 20px;
}

.services-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    background-color: #f5f3ef;
}

.service-item h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #444;
}

.service-item .price {
    font-size: 22px;
    font-weight: bold;
    color: #8b6f47;
    margin-top: 20px;
}

.about-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
}

.about-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.about-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #333;
}

.about-page p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.about-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    object-fit: cover;
    background-color: #d4c4a8;
}

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

    .nav-links {
        gap: 16px;
    }

    .editorial-container {
        padding: 20px 16px;
    }

    .hero-overlay h1 {
        font-size: 28px;
        padding: 40px 20px 20px;
    }

    .lead-text {
        font-size: 19px;
    }

    .editorial-content h2 {
        font-size: 26px;
    }

    .editorial-pullquote blockquote {
        font-size: 20px;
    }

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

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

    .services-grid {
        flex-direction: column;
    }
}