* {
    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;
}

.cookie-content p {
    flex: 1;
    margin-right: 2rem;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

.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 #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.editorial-container {
    max-width: 720px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.editorial-content {
    background-color: #ffffff;
    padding: 3rem 4rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.article-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.text-block {
    margin: 2.5rem 0;
}

.text-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.text-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f5f5f5;
}

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

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

.cta-link,
.cta-link-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-link {
    background-color: #4a7c59;
    color: #ffffff;
}

.cta-link:hover {
    background-color: #3d6b4a;
}

.cta-link-secondary {
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.cta-link-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

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

.services-editorial > h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-editorial > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

.service-item {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.service-item:first-of-type {
    border-top: none;
}

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

.service-item > p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-image {
    margin: 1.5rem 0;
    background-color: #f5f5f5;
}

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

.service-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #4a7c59;
    margin: 1.5rem 0;
}

.service-select {
    padding: 0.875rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #1a1a1a;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

#selectedServiceDisplay {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

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

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

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #4a7c59;
}

.thanks-container {
    max-width: 720px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4a7c59;
}

.thanks-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #1a1a1a;
}

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

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.content-page ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
}

.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content p {
        margin-right: 0;
    }
}