* {
    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: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #2d5016;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

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

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

.ad-label {
    background-color: rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-left: auto;
}

.hero-section {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #5a7c3e;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.85), rgba(90,124,62,0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4rem;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #e8f5e9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    background-color: #76b041;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #5e8d33;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    text-align: center;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    flex: 1;
    background-color: #e8f5e9;
    min-height: 300px;
    position: relative;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #76b041;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #2d5016;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.contact-form-section {
    background: linear-gradient(135deg, #2d5016, #3e6b1f);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.form-container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    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: #76b041;
}

.submit-button {
    background-color: #76b041;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #5e8d33;
}

.why-choose-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #76b041;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.benefit-item h3 {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.main-footer {
    background-color: #1e3610;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #a8d08d;
}

.footer-column p {
    font-size: 0.95rem;
    color: #d1e7c5;
    line-height: 1.6;
}

.footer-column a {
    color: #d1e7c5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #b8d4a8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.footer-bottom > p:last-child {
    font-size: 0.9rem;
    color: #d1e7c5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.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;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #76b041;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #76b041;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #5e8d33;
}

.cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4b5563;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #76b041;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-container .back-link:hover {
    text-decoration: underline;
}

.page-header {
    background: linear-gradient(135deg, #2d5016, #3e6b1f);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #e8f5e9;
}

.services-detail {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.pricing-info-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

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

.pricing-info-section p {
    font-size: 1.05rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.about-hero-section {
    margin-bottom: 0;
}

.about-content-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.about-content-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.team-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #2d5016, #3e6b1f);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #e8f5e9;
    margin-bottom: 2.5rem;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 2.5rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.additional-info-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #3e6b1f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content a {
    color: #76b041;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #5e8d33;
}

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

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

    .ad-label {
        margin-left: 0;
    }

    .hero-overlay {
        padding: 0 2rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-height: 250px;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }

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

    .legal-content h1 {
        font-size: 2rem;
    }
}