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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e2e;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #3d6e47;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #7a7a7a;
    border-left: 2px solid #ddd;
    padding-left: 1rem;
}

.hero-section {
    margin-top: 0;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(61, 110, 71, 0.7));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #5a8c68;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 5rem 0;
    background-color: #f9faf8;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.intro-section p {
    font-size: 1.15rem;
    color: #4a5c4a;
}

.services-preview {
    padding: 6rem 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d5016;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-content {
    padding: 1.8rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d5016;
}

.service-content p {
    color: #5a6c5a;
    margin-bottom: 1.2rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a7c59;
}

.cta-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3d6e47;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border: 2px solid #3d6e47;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #3d6e47;
    color: #ffffff;
}

.value-section {
    padding: 0;
    background-color: #f4f6f3;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 400px;
    padding: 5rem 3rem;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a5c4a;
}

.split-image {
    flex: 1;
    min-width: 400px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.approach-section {
    padding: 6rem 0;
    background-color: #2d5016;
    color: #ffffff;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.approach-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #a8d5b0;
}

.approach-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.form-section {
    padding: 6rem 0;
    background-color: #f9faf8;
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #5a6c5a;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5016;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d4ddd4;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 0;
    background-color: #e8ece7;
}

.disclaimer {
    font-size: 0.9rem;
    color: #5a6c5a;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #1f3a14;
    color: #b8d4b8;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #a8d5b0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

.footer-column ul li a:hover {
    color: #d4ead4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5016;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.4s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #5a8c68;
    color: #ffffff;
}

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: #f9faf8;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.thanks-box p {
    font-size: 1.15rem;
    color: #5a6c5a;
    margin-bottom: 2rem;
}

.thanks-box .cta-primary {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .split-text,
    .split-image {
        min-width: 100%;
    }

    .approach-blocks {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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