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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #4a8f4c;
    --text-color: #2a2a2a;
    --text-light: #5a5a5a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #d4a373;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.nav-editorial {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

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

.header-image {
    margin: 0 -2rem 2rem -2rem;
    background-color: var(--bg-light);
}

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

.header-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.article-body {
    font-size: 1.05rem;
}

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

.article-body h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.article-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.2rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: var(--bg-light);
}

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

.cta-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.challenge-list {
    background-color: var(--bg-light);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.testimonial-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.testimonial-section blockquote {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-section blockquote:last-child {
    margin-bottom: 0;
}

.testimonial-section p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-section cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.benefit-item h3 {
    margin-top: 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 5px;
    margin: 2rem 0;
}

.service-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card {
    display: block;
    cursor: pointer;
}

.service-card input[type="radio"] {
    display: none;
}

.card-content {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-card input[type="radio"]:checked + .card-content {
    border-color: var(--primary-color);
    background-color: #f0f7f0;
}

.card-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.card-content p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.footer {
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.value-item h3 {
    margin-top: 0;
}

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

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-image {
    background-color: var(--bg-white);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    object-fit: cover;
}

.service-content h2 {
    margin-top: 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    background-color: var(--bg-white);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 5px;
}

.service-selection-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-block p {
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.support-topics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.topic-item h3 {
    margin-top: 0;
}

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

.confirmation-icon {
    margin: 2rem auto;
}

.confirmation-message {
    font-size: 1.1rem;
    margin: 2rem 0;
}

.confirmation-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    background-color: var(--bg-light);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    border-radius: 5px;
}

.service-info-box {
    background-color: #f0f7f0;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem auto;
    max-width: 600px;
    border: 2px solid var(--primary-color);
}

.steps-timeline {
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
}

.support-notice {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.support-email {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-page .article-body {
    max-width: 900px;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .benefit-grid,
    .values-grid {
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (min-width: 769px) {
    .service-detail-card {
        flex-direction: row;
    }

    .service-image {
        flex: 0 0 40%;
    }

    .service-content {
        flex: 1;
    }
}
