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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfbf7;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.article-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e5df;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 19px;
    color: #6b7c93;
    font-weight: 400;
    line-height: 1.5;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 50px;
}

.content-block h3 {
    font-size: 22px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

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

.content-block ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-block li {
    font-size: 18px;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 10px;
}

.inline-image {
    margin: 50px 0;
    background-color: #f4f1eb;
}

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

.inline-image-small {
    margin: 40px auto;
    max-width: 500px;
    background-color: #f4f1eb;
}

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

.insight-box {
    background-color: #f8f6f2;
    border-left: 4px solid #2c5f4e;
    padding: 30px;
    margin: 50px 0;
}

.insight-box h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d4852;
}

.citation {
    color: #2c5f4e;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #2c5f4e;
}

.citation:hover {
    color: #1e4136;
    border-bottom-color: #1e4136;
}

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

.btn-text {
    color: #2c5f4e;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #2c5f4e;
    padding-bottom: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-text:hover {
    color: #1e4136;
    border-bottom-color: #1e4136;
}

.testimonial-block {
    background-color: #ffffff;
    border: 1px solid #e8e5df;
    padding: 40px;
    margin: 50px 0;
}

.testimonial-block blockquote {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
}

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

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e5df;
    padding: 35px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d4852;
    margin-bottom: 15px;
}

.service-image {
    margin-bottom: 25px;
    background-color: #f4f1eb;
}

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

.composition-detail {
    background-color: #f8f6f2;
    padding: 20px;
    margin: 20px 0;
}

.composition-detail h4 {
    font-size: 16px;
    color: #2c5f4e;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.composition-detail ul {
    margin-left: 20px;
}

.composition-detail li {
    font-size: 15px;
    line-height: 1.6;
    color: #3d4852;
    margin-bottom: 5px;
}

.service-note {
    font-size: 15px;
    color: #6b7c93;
    font-style: italic;
}

.service-price {
    font-size: 32px;
    color: #2c5f4e;
    font-weight: 700;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #2c5f4e;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.form-section {
    background-color: #ffffff;
    border: 1px solid #e8e5df;
    padding: 40px;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-section p {
    font-size: 17px;
    color: #6b7c93;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d3d3d3;
    background-color: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f6f2;
    color: #6b7c93;
}

.btn-submit {
    background-color: #2c5f4e;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    background-color: #fef9e7;
    border: 1px solid #f9e79f;
    padding: 30px;
    margin: 60px 0;
}

.disclaimer-section h3 {
    font-size: 18px;
    color: #856404;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.references-section {
    background-color: #f8f6f2;
    padding: 30px;
    margin: 50px 0;
}

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

.references-section ol {
    margin-left: 25px;
}

.references-section li {
    font-size: 15px;
    line-height: 1.7;
    color: #3d4852;
    margin-bottom: 12px;
}

.references-section a {
    color: #2c5f4e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.references-section a:hover {
    border-bottom-color: #2c5f4e;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c5f4e;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d4852;
    margin: 0;
}

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

.btn-cookie {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2c5f4e;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #ecf0f1;
    color: #2c3e50;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
}

.contact-item {
    background-color: #ffffff;
    border: 1px solid #e8e5df;
    padding: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c5f4e;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #3d4852;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e8e5df;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 19px;
    color: #2c5f4e;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.success-icon {
    font-size: 80px;
    color: #2c5f4e;
    margin-bottom: 30px;
}

.order-summary {
    background-color: #f8f6f2;
    padding: 25px;
    margin: 40px 0;
    text-align: left;
}

.order-summary h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.order-summary p {
    font-size: 17px;
    color: #3d4852;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.step-item {
    background-color: #ffffff;
    border: 1px solid #e8e5df;
    padding: 25px;
}

.step-item h4 {
    font-size: 18px;
    color: #2c5f4e;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: #3d4852;
}

.legal-page h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2c5f4e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.legal-page a:hover {
    border-bottom-color: #2c5f4e;
}

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

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

    .editorial-container {
        padding: 40px 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .content-block p,
    .content-block li {
        font-size: 17px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}