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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-color: #333;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-style: italic;
}

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

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9), transparent);
    padding: 4rem 2rem 3rem;
}

.hero-text-overlay h1 {
    color: var(--bg-white);
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    text-align: center;
}

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

.story-intro {
    padding: 4rem 0 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-intro p,
.problem-amplification p,
.solution-reveal p,
.trust-building p,
.how-it-works p,
.ingredients-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-image-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.image-caption {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: italic;
    text-align: center;
}

.problem-amplification,
.solution-reveal {
    padding: 4rem 0;
}

.problem-amplification h2,
.solution-reveal h2,
.trust-building h2,
.testimonials-inline h2,
.how-it-works h2,
.ingredients-section h2,
.form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1.2rem;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cta-link-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.cta-link-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-building {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonials-inline {
    padding: 5rem 0;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0 3rem;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-steps li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.ingredients-section {
    padding: 5rem 0;
}

.origin-info {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
}

.origin-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.scientific-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f0ebe5;
    border-left: 3px solid var(--secondary-color);
    font-size: 0.95rem;
}

.scientific-note a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.scientific-note a:hover {
    text-decoration: underline;
}

.form-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.order-form {
    margin: 3rem 0;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fff9f0;
}

.disclaimer {
    font-size: 0.95rem;
    color: #5a4a3a;
    line-height: 1.7;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.references-section {
    padding: 3rem 0;
}

.references-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.references-list {
    list-style: decimal;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    text-align: center;
}

.simple-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.simple-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.simple-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.simple-page h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.simple-page p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.simple-page ul,
.simple-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.simple-page li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.simple-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.services-page {
    padding: 4rem 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-card {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 0 0 40%;
    background-color: var(--bg-light);
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.service-card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-card-price {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.contact-page {
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info-item {
    margin-bottom: 2.5rem;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-item p {
    line-height: 1.7;
    color: var(--text-color);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}

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

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

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

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image-wrapper {
        flex: 0 0 auto;
    }

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

    .narrow-content {
        padding: 0 1.5rem;
    }

    .process-steps li {
        padding-left: 3.5rem;
    }

    .process-steps li::before {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
}