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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f5f7f5;
    min-height: 550px;
}

.hero-content {
    padding: 80px 40px 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text h1 {
    font-size: 48px;
    color: #1a3309;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 700px;
}

.hero-image {
    width: 100%;
    height: 400px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #5a8c2f;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #4a7324;
}

.intro-block {
    background-color: #ffffff;
    padding: 90px 40px;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.services-grid-section {
    background-color: #fafbfa;
    padding: 100px 40px;
}

.services-grid-section h2 {
    text-align: center;
    font-size: 38px;
    color: #1a3309;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    color: #2d5016;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    color: #5a6c7d;
    margin: 0 24px 12px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 20px;
    color: #5a8c2f;
    font-weight: 700;
    margin: 16px 24px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #5a8c2f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #4a7324;
}

.form-section {
    background-color: #ffffff;
    padding: 100px 40px;
}

.form-section h2 {
    font-size: 36px;
    color: #1a3309;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 48px;
    font-size: 18px;
    color: #5a6c7d;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a8c2f;
}

.form-group input[readonly] {
    background-color: #f7fafc;
    color: #718096;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #5a8c2f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #4a7324;
}

.trust-section {
    background-color: #f5f7f5;
    padding: 90px 40px;
}

.trust-section h2 {
    font-size: 36px;
    color: #1a3309;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

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

.trust-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a3309;
    color: #e8ebe8;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1 1 250px;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d5016;
}

.disclaimer {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom > p {
    text-align: center;
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background-color: #718096;
    color: #ffffff;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.thanks-box {
    max-width: 700px;
    text-align: center;
    background-color: #f5f7f5;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #1a3309;
    margin-bottom: 24px;
}

.thanks-box p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-box .service-info {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-box .service-info strong {
    color: #2d5016;
}

.content-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 42px;
    color: #1a3309;
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 28px;
    color: #2d5016;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5568;
}

.about-hero {
    background-color: #f5f7f5;
    padding: 80px 40px;
}

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

.about-content h1 {
    font-size: 42px;
    color: #1a3309;
    margin-bottom: 32px;
}

.about-grid {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.about-col {
    flex: 1 1 450px;
}

.about-col h2 {
    font-size: 28px;
    color: #2d5016;
    margin-bottom: 20px;
}

.about-col p {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.about-image-section {
    padding: 0;
    height: 450px;
    background-color: #e8ebe8;
}

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

.services-page-section {
    padding: 80px 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 1 1 400px;
}

.contact-info-box h2 {
    font-size: 26px;
    color: #2d5016;
    margin-bottom: 20px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #1a3309;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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