* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.btn-accept:hover {
    background-color: #246a42;
}

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

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.hero-editorial {
    margin: 3rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.content-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.inline-image-left,
.inline-image-right {
    margin: 2rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image-left {
    float: left;
    width: 45%;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.inline-image-right {
    float: right;
    width: 45%;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.cta-inline {
    background-color: #f0f7f4;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid #2d7a4f;
}

.cta-inline h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d7a4f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #246a42;
}

.btn-secondary {
    background-color: transparent;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
}

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

.service-preview {
    margin: 4rem 0;
}

.service-cards-editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid #2d7a4f;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-card .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d7a4f;
    margin-top: 1rem;
}

.link-more {
    display: inline-block;
    color: #2d7a4f;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-more:hover {
    color: #246a42;
    text-decoration: underline;
}

.form-editorial {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #246a42;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 3px solid #bdc3c7;
    border-radius: 4px;
}

.services-detail {
    margin: 3rem 0;
}

.service-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d7a4f;
}

.service-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 0 0 40%;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-block .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

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

.thanks-content {
    padding: 3rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.note-text {
    font-size: 1.1rem;
    color: #2d7a4f;
    font-weight: 500;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-content {
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #2d7a4f;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .editorial-main {
        padding: 0 1.5rem;
    }

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

    .inline-image-left,
    .inline-image-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }

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

    .service-body {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }

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