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

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e4;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.hero-editorial {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 24px;
    text-align: center;
    background-color: #d4c4b0;
}

.hero-text-center {
    max-width: 720px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.subheading {
    font-size: 22px;
    color: #f0f0f0;
    font-weight: 300;
}

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

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

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 32px 0;
    font-style: italic;
}

.content-narrow p {
    margin: 24px 0;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 36px;
    margin: 56px 0 24px 0;
    font-weight: 500;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 32px 0 16px 0;
    font-weight: 500;
}

.reference {
    color: #6b7c93;
    text-decoration: none;
    font-size: 15px;
    vertical-align: super;
    transition: color 0.3s ease;
}

.reference:hover {
    color: #4a5568;
    text-decoration: underline;
}

.insight-box {
    background-color: #f8f6f3;
    border-left: 4px solid #b8a68f;
    padding: 32px;
    margin: 40px 0;
}

.insight-box h3 {
    margin-top: 0;
    color: #2c2c2c;
}

.insight-box p {
    margin-bottom: 0;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.ingredient-list {
    margin: 32px 0;
    padding-left: 24px;
}

.ingredient-list li {
    margin: 12px 0;
    font-size: 18px;
}

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

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

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

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e4;
}

.service-card h3 {
    padding: 24px 24px 8px 24px;
    margin: 0;
    font-size: 24px;
}

.service-card p {
    padding: 0 24px;
    margin: 12px 0;
}

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

.select-service {
    margin: 16px 24px 24px 24px;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a1a1a;
}

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

.form-section {
    background-color: #f8f6f3;
    padding: 48px 32px;
    margin: 56px 0;
    border-radius: 2px;
}

.form-section h3 {
    margin-top: 0;
}

.contact-form {
    margin-top: 32px;
}

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

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

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

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

.submit-btn {
    padding: 16px 48px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff;
    border: 1px solid #e0e0d8;
    padding: 32px;
    margin: 56px 0;
    border-radius: 2px;
}

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 20px;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 56px 24px 24px 24px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.references-list li {
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0d8;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    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;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2c2c2c;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #e8e8e4;
    color: #2c2c2c;
}

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

.thanks-message {
    text-align: center;
    padding: 80px 24px;
    max-width: 680px;
    margin: 0 auto;
}

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

.thanks-message p {
    font-size: 18px;
    margin: 16px 0;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.contact-info {
    background-color: #f8f6f3;
    padding: 32px;
    margin: 32px 0;
    border-radius: 2px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 18px;
    margin: 12px 0;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 16px;
    margin: 16px 0;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page li {
    margin: 8px 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 36px;
    }

    .subheading {
        font-size: 18px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}