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

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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a5f3b;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a5f3b;
}

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

.hero-editorial {
    margin-bottom: 50px;
    text-align: left;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.text-block {
    margin-bottom: 45px;
}

.text-block h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.text-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 18px;
}

.text-block ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #3d3d3d;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.text-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f3b;
    font-weight: bold;
}

.text-block strong {
    font-weight: 600;
    color: #1a1a1a;
}

.image-section {
    margin: 55px 0;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e9ecef;
}

.image-inline {
    margin: 50px 0;
}

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

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5f3b;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #134a2d;
}

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

.service-card {
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 24px;
    color: #1a5f3b;
    margin: 25px 25px 15px 25px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 25px 15px 25px;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #1a5f3b;
    margin: 15px 25px;
}

.service-card .select-service {
    margin: 0 25px 25px 25px;
    padding: 12px 24px;
    background-color: #1a5f3b;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #134a2d;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f3b;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #6c757d;
    font-style: normal;
}

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

.form-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-section > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    color: #2c3e50;
}

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

.submit-btn {
    padding: 14px 32px;
    background-color: #1a5f3b;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #134a2d;
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    font-style: italic;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 30px 40px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a5f3b;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 30px;
    display: none;
    z-index: 9999;
}

.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 {
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #1a5f3b;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #134a2d;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

.legal-page .text-block ul li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #1a5f3b;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #134a2d;
}

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

.thanks-page .text-block {
    text-align: left;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-editorial h1 {
        font-size: 32px;
    }

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

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

    .text-block p {
        font-size: 16px;
    }

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

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

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

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

    .submit-btn {
        width: 100%;
    }
}