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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

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

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

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

.btn-accept:hover {
    background-color: #3d7f5f;
}

.btn-reject {
    background-color: #5a5a5a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7a7a7a;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5f3f;
}

.editorial-main {
    background-color: #ffffff;
}

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

.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #e8ede9;
}

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

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

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

.narrative-section h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrative-section h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    display: block;
    object-fit: cover;
    background-color: #e8ede9;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #3d7f5f;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f8f6;
    border-left: 4px solid #2d5f3f;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.services-overview {
    margin: 4rem 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: #f9faf9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #3d7f5f;
}

.consultation-form {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: #f5f8f6;
    border-radius: 8px;
}

.consultation-form.hidden {
    display: none;
}

.consultation-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d7f5f;
}

.trust-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f9faf9;
}

.disclaimer-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff8e6;
    border: 1px solid #e6d5a0;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.page-hero {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.page-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-detailed {
    margin-top: 3rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-card img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: #e8ede9;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1rem 0 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-section {
    margin-top: 2rem;
}

.contact-info-block {
    margin-top: 2rem;
}

.contact-info-block img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: #e8ede9;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5f3f;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-info-block ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.contact-info-block li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.thanks-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.thanks-box {
    padding: 3rem 2rem;
    background-color: #f5f8f6;
    border-radius: 8px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.confirmation-details {
    margin: 2rem 0;
}

.service-confirmation {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.thanks-box h2 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: #1a1a1a;
    text-align: left;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #2d5f3f;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5f3f;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.thanks-box p {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f9faf9;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: #2d5f3f;
    color: #ffffff;
    font-weight: 600;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .page-hero h1 {
        font-size: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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