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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #555555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-article {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-header {
    margin-bottom: 3rem;
}

.header-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 3px;
    overflow: hidden;
}

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

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.article-lead {
    font-size: 1.3rem;
    color: #666666;
    font-style: italic;
    line-height: 1.6;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.article-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.article-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #333333;
}

.article-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-section li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.inline-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 3px;
    overflow: hidden;
}

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

.spotlight-box {
    background-color: #f8f6f3;
    padding: 2rem 2.5rem;
    border-left: 4px solid #a89077;
    margin: 3rem 0;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.insight-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #a89077;
}

.testimonial-block {
    background-color: #fafaf8;
    padding: 1.8rem 2rem;
    margin: 2rem 0;
    border-radius: 3px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #444444;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777777;
    text-align: right;
}

.cta-section {
    background-color: #f9f8f6;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 3px;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background-color: #ffffff;
    padding: 1.8rem;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: #2c2c2c;
}

.service-card p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 0;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #6b5d4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #574a3d;
}

.pricing-reveal {
    margin: 2.5rem 0;
}

.price-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.price-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: #2c2c2c;
}

.price-item p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #6b5d4f;
    margin-top: 1rem;
}

.consultation-form {
    margin-top: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #6b5d4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #574a3d;
}

.disclaimer-section {
    background-color: #fef9f3;
    padding: 2rem;
    border: 1px solid #e8dcc8;
    border-radius: 3px;
    margin: 3rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6b5d4f;
    margin-bottom: 1.5rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: #2c2c2c;
}

.legal-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #6b5d4f;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #574a3d;
}

.btn-cookie.btn-secondary {
    background-color: #555555;
}

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .editorial-main {
        padding: 2rem 1rem;
    }

    .editorial-article {
        padding: 2rem 1.5rem;
    }

    .article-header h1 {
        font-size: 2.2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-section h2 {
        font-size: 1.6rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
