* {
    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: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.hero-editorial {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
    padding: 100px 30px;
    text-align: center;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.lead-text {
    font-size: 20px;
    color: #e8f0ea;
    line-height: 1.6;
}

.story-section {
    padding: 80px 30px;
}

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

.story-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    margin-top: 60px;
    font-weight: 400;
    color: #1a1a1a;
}

.story-section h2:first-of-type {
    margin-top: 0;
}

.story-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 18px;
    margin-top: 40px;
    font-weight: 500;
    color: #2c2c2c;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.btn-text-link {
    font-size: 18px;
    color: #4a7c59;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #4a7c59;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-text-link:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 15px;
}

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

.services-showcase {
    background-color: #f5f5f5;
    padding: 80px 30px;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card.selected {
    border: 3px solid #4a7c59;
}

.service-card-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.service-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e0e0e0;
}

.service-text {
    padding: 30px 30px 30px 0;
    flex: 1;
}

.service-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-card.selected .btn-select-service {
    background-color: #2d5a3d;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
    color: #1a1a1a;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-notice {
    background-color: #e8f0ea;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #4a7c59;
}

.form-notice p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-notice p:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background-color: #3d6a4a;
}

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.form-hint {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: -15px;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #242424;
    border-radius: 4px;
}

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

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #888;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

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

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

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

    .service-card-content {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        height: 250px;
    }

    .service-text {
        padding: 30px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }
}

.page-hero {
    background-color: #4a7c59;
    padding: 80px 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.page-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.contact-info-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #4a7c59;
}

.contact-info-box p {
    margin-bottom: 12px;
}

.contact-info-box strong {
    color: #1a1a1a;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 60px 30px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #4a7c59;
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-box p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #3d6a4a;
}