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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 17px;
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

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

.hero-narrative {
    background-color: #fafafa;
    padding: 80px 20px 60px;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-narrative h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.hero-image-inline {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8e8e8;
}

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

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

.story-section h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.story-section p {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.insight-block {
    background-color: #f0f7ff;
    padding: 70px 20px;
    margin: 60px 0;
}

.insight-content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.insight-block h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0066cc;
}

.insight-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #0066cc;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

.image-break {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.ingredient-section {
    background-color: #fafafa;
    padding: 70px 20px;
    margin: 60px 0;
}

.ingredient-list {
    margin-top: 35px;
}

.ingredient-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.ingredient-item strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.ingredient-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.ingredient-note {
    margin-top: 30px;
    font-size: 15px;
    font-style: italic;
    color: #666;
}

.testimonial-inline {
    max-width: 680px;
    margin: 70px auto;
    padding: 0 20px;
}

.testimonial-inline blockquote {
    border-left: 5px solid #0066cc;
    padding: 30px 30px 30px 40px;
    background-color: #f8f9fa;
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}

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

.trust-section {
    padding: 70px 20px;
}

.trust-section h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.trust-section p {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.service-reveal {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-reveal h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.service-reveal p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.service-cards-editorial {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-small {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-small img {
    width: 100%;
    height: 260px;
    display: block;
}

.service-card-small h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    padding: 20px 25px 10px;
}

.service-card-small p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding: 0 25px 20px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    padding: 0 25px 25px;
}

.cta-inline-editorial {
    background-color: #0066cc;
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-inline-editorial h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-inline-editorial p {
    font-size: 19px;
    line-height: 1.7;
    color: #e8f2ff;
}

.form-section-editorial {
    background-color: #f8f9fa;
    padding: 70px 20px;
}

.form-section-editorial h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111;
    text-align: center;
}

.order-form {
    max-width: 520px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background-color: #0066cc;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.disclaimer-section {
    background-color: #fffbf0;
    padding: 50px 20px;
    margin: 60px 0;
}

.disclaimer-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

.references-section {
    padding: 50px 20px;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.reference-list {
    max-width: 850px;
    margin: 0 auto;
    padding-left: 25px;
}

.reference-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.reference-list a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.reference-list a:hover {
    border-bottom-color: #0066cc;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

.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 1 250px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaaaaa;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 30px;
    z-index: 1000;
    border-top: 3px solid #0066cc;
}

.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: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #0052a3;
}

.btn-cookie-reject {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #d0d0d0;
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.about-values {
    background-color: #fafafa;
    padding: 70px 20px;
}

.value-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-top: 4px solid #0066cc;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 70px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.team-section p {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.services-grid-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    align-items: flex-start;
}

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

.service-detail-card img {
    width: 380px;
    height: 280px;
    border-radius: 6px;
    flex-shrink: 0;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.composition-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.composition-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 12px;
}

.composition-box ul {
    padding-left: 20px;
}

.composition-box li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 6px;
}

.price-large {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f0f7ff;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

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

.text-link {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #0066cc;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.contact-info-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-block {
    flex: 1 1 280px;
    background-color: #fafafa;
    padding: 35px;
    border-radius: 6px;
    border-top: 4px solid #0066cc;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.faq-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #fafafa;
    border-radius: 6px;
}

.faq-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.order-confirmation {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-confirmation h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.next-steps {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

.selected-service-info {
    background-color: #e8f4ff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #0066cc;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #d0d0d0;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.thanks-tip {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
}

.thanks-tip h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.thanks-tip p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    background-color: #ffffff;
}

.legal-date {
    font-size: 15px;
    color: #888;
    font-style: italic;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-content a:hover {
    border-bottom-color: #0066cc;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-narrative h1 {
        font-size: 36px;
    }

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

    .service-cards-editorial {
        flex-direction: column;
    }

    .service-card-small {
        flex: 1 1 100%;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 20px;
    }

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

    .service-detail-card img {
        width: 100%;
        height: auto;
    }

    .value-blocks {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .contact-block {
        flex: 1 1 100%;
    }

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

    .cookie-content p {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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