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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #4a90e2;
    color: #fff;
}

.btn-cookie:hover {
    background: #357abd;
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 3px;
}

.editorial-article {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

.article-header {
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.article-lead {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.article-image {
    margin: 50px 0;
    background: #e8e8e8;
}

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

.inline-image {
    margin: 40px 0;
    background: #e8e8e8;
}

.article-section {
    margin: 50px 0;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.insight-block,
.trust-block {
    background: #f5f9fc;
    padding: 35px;
    margin: 50px 0;
    border-left: 4px solid #4a90e2;
}

.insight-block h3,
.trust-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.insight-block p,
.trust-block p {
    font-size: 17px;
    color: #444;
    margin: 0;
}

.insight-block sup a,
.trust-block sup a,
.article-section sup a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

.cta-inline {
    background: #2c2c2c;
    color: #fff;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.cta-inline p {
    font-size: 22px;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.testimonial {
    font-size: 19px;
    font-style: italic;
    border-left: 4px solid #ddd;
    padding-left: 30px;
    margin: 35px 0;
    color: #555;
}

.ingredient-section {
    background: #fff;
    border: 1px solid #ddd;
    padding: 35px;
    margin: 50px 0;
}

.ingredient-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.ingredient-section li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

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

.ingredient-section strong {
    color: #2c2c2c;
}

.service-reveal {
    margin: 80px 0;
}

.service-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.service-reveal > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.form-section {
    background: #f9f9f9;
    padding: 50px;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-section > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.article-form {
    max-width: 100%;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 50px;
    background: #4a90e2;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.disclaimer-section {
    background: #fff9e6;
    border: 1px solid #f0e68c;
    padding: 30px;
    margin: 50px 0;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-section strong {
    color: #2c2c2c;
}

.references-section {
    margin: 60px 0;
    padding: 40px;
    background: #f5f5f5;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.references-section ol {
    padding-left: 20px;
}

.references-section li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.references-section a {
    color: #4a90e2;
    text-decoration: none;
}

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

.main-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background: #fafafa;
}

.next-steps-list {
    padding-left: 25px;
    margin: 20px 0;
}

.next-steps-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-info-block {
    background: #f9f9f9;
    padding: 30px;
    margin: 25px 0;
    border-left: 3px solid #4a90e2;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-info-block p {
    font-size: 16px;
    margin: 0;
    line-height: 1.8;
}

.faq-item {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border-left: 3px solid #4a90e2;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.thanks-container {
    text-align: center;
}

.thanks-container .article-header {
    text-align: center;
}

.thanks-container .article-section {
    text-align: left;
}

.confirmation-block {
    background: #e8f5e9;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #4caf50;
    text-align: left;
}

.confirmation-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.confirmation-block p {
    font-size: 18px;
    color: #2c2c2c;
    margin: 0;
}

.service-card ul,
.article-section ul {
    padding-left: 25px;
    margin: 15px 0;
}

.service-card li,
.article-section li {
    margin-bottom: 8px;
}

.service-card h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #2c2c2c;
}

.price-note {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

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

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

    .article-section p {
        font-size: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-cards {
        gap: 20px;
    }

    .form-section {
        padding: 30px 20px;
    }

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

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

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}