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

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

.ad-disclosure {
    background-color: #f0f4e8;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #5a6b4a;
    border-bottom: 1px solid #d4e0c8;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2d5016;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2d5016;
}

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

.hero-editorial {
    margin-bottom: 48px;
}

.hero-image-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 32px;
    border-radius: 2px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
    color: #1a2912;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.text-section {
    margin-bottom: 60px;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #3a4a32;
    margin-bottom: 28px;
    font-weight: 400;
}

p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a4a32;
}

h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a2912;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5016;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 2px;
}

.inline-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a6741;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

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

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

.service-card {
    padding: 28px;
    border-radius: 3px;
    border: 1px solid #e0e8d8;
}

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 2px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 16px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 16px;
}

.btn-service {
    padding: 10px 24px;
    background-color: #6b8e23;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #5a7a1d;
}

.form-section {
    background-color: #f8faf5;
    padding: 40px;
    margin: 60px 0;
    border-radius: 3px;
    border: 1px solid #e8efe0;
}

.form-section h3 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d5016;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4e0c8;
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 14px 40px;
    background-color: #4a6741;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer {
    margin-top: 60px;
    padding: 24px;
    background-color: #fefdf8;
    border-left: 3px solid #c9b87a;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer p {
    font-size: 14px;
    margin-bottom: 0;
}

.footer-editorial {
    background-color: #2d5016;
    color: #e8efe0;
    padding: 48px 30px 24px;
    margin-top: 80px;
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 32px;
}

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
}

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

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

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

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

.footer-bottom {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #3e5f25;
    font-size: 13px;
    color: #a8b89f;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #6b8e23;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #5a7a1d;
}

.btn-reject {
    background-color: #e8efe0;
    color: #2d5016;
}

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

.thanks-container {
    max-width: 640px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8faf5;
    border-radius: 3px;
    border: 1px solid #e8efe0;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

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

    .hero-title {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

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

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

    .form-section {
        padding: 24px;
    }
}