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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #5a8f7b;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-hero {
    margin-bottom: 48px;
    text-align: center;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.lead-text {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
}

.article-image {
    margin: 48px 0;
    background-color: #e9ecef;
}

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

.article-section {
    margin: 56px 0;
}

.article-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.article-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #495057;
}

.article-list {
    margin: 24px 0;
    padding-left: 24px;
}

.article-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #495057;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #5a8f7b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #4a7a68;
}

.article-image-inline {
    margin: 32px 0;
    background-color: #e9ecef;
}

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

.testimonial-inline {
    background-color: #f8f9fa;
    padding: 40px 32px;
    margin: 48px 0;
    border-left: 4px solid #5a8f7b;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 24px;
    border-radius: 8px;
}

.service-image {
    margin-bottom: 20px;
    background-color: #e9ecef;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.4rem;
    color: #5a8f7b;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #5a8f7b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #4a7a68;
}

.contact-form-section {
    margin: 56px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-form-section > p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    color: #6c757d;
}

.service-confirmation {
    background-color: #d1e7dd;
    color: #0f5132;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    display: none;
}

.service-confirmation.active {
    display: block;
}

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

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

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.submit-button {
    padding: 14px 32px;
    background-color: #5a8f7b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #4a7a68;
}

.submit-button:disabled {
    background-color: #adb5bd;
    cursor: not-allowed;
}

.disclaimer-section {
    border-top: 1px solid #dee2e6;
    padding-top: 32px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    line-height: 1.6;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 48px 32px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #adb5bd;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #5a8f7b;
    padding: 24px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #495057;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #5a8f7b;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #4a7a68;
}

.cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

.cookie-reject:hover {
    background-color: #dee2e6;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

.simple-hero {
    text-align: center;
    padding: 80px 24px;
    background-color: #f8f9fa;
}

.simple-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a252f;
}

.simple-hero p {
    font-size: 1.15rem;
    color: #6c757d;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

.content-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-wrapper ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #495057;
}

.content-wrapper a {
    color: #5a8f7b;
    text-decoration: none;
}

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

.contact-info-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: #1a252f;
}

.contact-detail p {
    color: #495057;
    margin: 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 40px 0;
}

.services-grid .service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.about-image {
    margin: 40px 0;
    background-color: #e9ecef;
}

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

.team-section {
    margin: 60px 0;
}

.team-member {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1a252f;
}

.team-member .title {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #5a8f7b;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container .service-info {
    background-color: #d1e7dd;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 32px;
    background-color: #5a8f7b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #4a7a68;
}