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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2d5016;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #5a8c2f;
}

.editorial-content {
    background-color: #fff;
}

.hero-editorial {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #a8c796;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    color: #fff;
    line-height: 1.3;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

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

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #3a3a3a;
}

.content-narrow h2 {
    font-size: 32px;
    color: #2d5016;
    margin: 50px 0 24px;
    line-height: 1.3;
    font-weight: 600;
}

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

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

.btn-cta {
    display: inline-block;
    background-color: #5a8c2f;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cta:hover {
    background-color: #4a7526;
    transform: translateY(-2px);
}

.testimonial-inline {
    background-color: #f9fdf7;
    border-left: 4px solid #5a8c2f;
    padding: 30px 35px;
    margin: 40px 0;
}

.testimonial-inline blockquote {
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline p {
    margin-bottom: 12px;
    font-size: 17px;
}

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

.services-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.services-section > h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d5016;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 35px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d8e9cf;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    color: #2d5016;
    margin-bottom: 14px;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
}

.price {
    font-size: 28px;
    color: #5a8c2f;
    font-weight: bold;
    margin: 18px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-service {
    width: 100%;
    background-color: #5a8c2f;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-service:hover {
    background-color: #4a7526;
    transform: translateY(-1px);
}

.form-section {
    background-color: #f9fdf7;
    padding: 45px;
    border-radius: 6px;
    margin: 45px 0;
    border: 1px solid #d8e9cf;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #2d5016;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3a3a3a;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.selected-service-display {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
    border: 1px solid #d8e9cf;
}

.selected-service-display p {
    margin-bottom: 10px;
    font-size: 16px;
}

.btn-submit {
    width: 100%;
    background-color: #5a8c2f;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #4a7526;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff8e1;
    border: 1px solid #f9c74f;
    border-radius: 4px;
    padding: 25px;
    margin: 50px 0;
    font-size: 14px;
    color: #555;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content a {
    color: #90ee90;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #5a8c2f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #4a7526;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #666;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #555;
    transform: translateY(-1px);
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 30px 25px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #fff;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

.footer-column a:hover {
    color: #90ee90;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 13px;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .nav-menu {
        gap: 20px;
    }

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

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