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

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

a {
    color: #8b6f47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6b5337;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 16px;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 13px;
    color: #888;
    font-style: italic;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-left: 3px solid #8b6f47;
}

.editorial-main {
    background-color: #ffffff;
}

.story-container {
    padding: 40px 0;
}

.hero-editorial {
    padding: 60px 0 40px;
    border-bottom: 1px solid #e8e8e8;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-intro {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-image-inline {
    margin-top: 32px;
    background-color: #f0f0f0;
}

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

.story-section {
    padding: 50px 0;
}

.story-section.alternate-bg {
    background-color: #f9f9f9;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
    color: #2a2a2a;
}

.story-section h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2a2a2a;
}

.story-section p {
    margin-bottom: 20px;
}

.inline-cta {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 2px solid #8b6f47;
    border-bottom: 2px solid #8b6f47;
}

.cta-link {
    font-size: 20px;
    font-weight: 600;
    color: #8b6f47;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-link:hover {
    transform: translateX(4px);
    color: #6b5337;
}

.image-text-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.image-text-flow img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.flow-text {
    flex: 1;
}

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

.service-card {
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-card h3,
.service-card h4 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 16px;
}

.service-details {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 24px 0;
    border-left: 4px solid #8b6f47;
}

.service-details ul {
    margin-left: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.service-details li {
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.selected-service-info {
    background-color: #f0ede8;
    padding: 20px;
    margin-bottom: 32px;
    border-left: 4px solid #8b6f47;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    background-color: #f9f4ef;
}

.testimonial-inline {
    margin: 32px 0;
    padding: 24px;
    background-color: #ffffff;
    border-left: 4px solid #8b6f47;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 12px;
}

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

.composition-section {
    background-color: #f5f5f5;
}

.ingredient-list {
    margin-left: 20px;
    margin-top: 24px;
}

.ingredient-list li {
    margin-bottom: 16px;
    line-height: 1.6;
}

.ingredient-note {
    margin-top: 24px;
    padding: 16px;
    background-color: #fff9f0;
    border-left: 3px solid #d4a574;
    font-size: 16px;
}

.final-cta-section {
    padding: 60px 0;
}

.final-cta-box {
    text-align: center;
    padding: 48px 32px;
    background-color: #f9f4ef;
    border-top: 3px solid #8b6f47;
}

.final-cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.final-cta-box p {
    font-size: 20px;
    margin-bottom: 32px;
}

.btn-final-cta {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-final-cta:hover {
    background-color: #6b5337;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.philosophy-item {
    padding: 24px;
    background-color: #ffffff;
    border-left: 4px solid #8b6f47;
}

.philosophy-item h4 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 32px;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b6f47;
}

.contact-note {
    padding: 20px;
    background-color: #fff9f0;
    border-left: 3px solid #d4a574;
    margin-top: 32px;
}

.contact-visual {
    background-color: #f0f0f0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.faq-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b6f47;
}

.faq-item h4 {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.thanks-hero {
    text-align: center;
    padding: 80px 0;
    background-color: #f9f4ef;
}

.thanks-content h1 {
    color: #8b6f47;
}

.thanks-details {
    margin-top: 32px;
    padding: 24px;
    background-color: #ffffff;
    display: inline-block;
}

.next-steps {
    margin-top: 40px;
    padding: 24px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b6f47;
}

.next-steps h3 {
    margin-bottom: 16px;
}

.next-steps ul {
    margin-left: 20px;
    margin-top: 16px;
}

.next-steps li {
    margin-bottom: 12px;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.related-link-card {
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.related-link-card:hover {
    border-color: #8b6f47;
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.1);
}

.related-link-card h4 {
    color: #8b6f47;
    margin-bottom: 8px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 24px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #666;
}

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 0 32px;
}

.disclaimer-box {
    background-color: #3a3a3a;
    padding: 24px;
    margin-bottom: 40px;
    border-left: 4px solid #8b6f47;
}

.disclaimer-box h4 {
    color: #d4a574;
    margin-bottom: 12px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

.references-section {
    margin-bottom: 40px;
}

.references-section h4 {
    color: #d4a574;
    margin-bottom: 16px;
}

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

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

.references-list a {
    color: #d4a574;
}

.references-list a:hover {
    color: #e0b890;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #4a4a4a;
}

.footer-nav a {
    color: #d0d0d0;
    font-size: 15px;
}

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

.footer-contact {
    margin-bottom: 24px;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: #888;
    margin-top: 32px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .image-text-flow {
        flex-direction: row;
        gap: 32px;
    }

    .image-text-flow img {
        width: 45%;
    }

    .contact-info-layout {
        flex-direction: row;
    }

    .contact-details {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }

    .related-links {
        flex-direction: row;
    }
}

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

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

    .story-section h2 {
        font-size: 26px;
    }

    .service-price {
        font-size: 24px;
    }
}

.hidden {
    display: none;
}