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

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

.main-nav {
    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: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #e8f3e1;
    padding: 80px 20px 60px;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a3a0f;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #3d5d30;
}

.cta-button {
    display: inline-block;
    padding: 15px 36px;
    background-color: #4a7c2e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3a6322;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: #d4e8cc;
}

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

.intro-section {
    padding: 90px 20px;
    background-color: #fff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a0f;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.intro-image {
    flex: 0 0 400px;
    background-color: #e8f3e1;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview-section {
    padding: 90px 20px;
    background-color: #f5f9f3;
}

.services-preview-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a3a0f;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #4a5d4a;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c2e;
    margin: 0 24px 16px;
}

.service-link {
    display: inline-block;
    margin: 0 24px 24px;
    color: #4a7c2e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #2d5016;
}

.approach-section {
    padding: 90px 20px;
    background-color: #2d5016;
    color: #fff;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #e8f3e1;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #d4e8cc;
}

.approach-visual {
    flex: 0 0 480px;
    background-color: #1a3a0f;
}

.approach-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section {
    padding: 90px 20px;
    background-color: #fff;
}

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #4a5d4a;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e2c;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    padding: 15px 36px;
    background-color: #4a7c2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #3a6322;
}

.main-footer {
    background-color: #1a3a0f;
    color: #d4e8cc;
    padding: 60px 20px 30px;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
    color: #e8f3e1;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3a6322;
    font-size: 13px;
    line-height: 1.6;
    color: #a8c8a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2c;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

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

.cookie-button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-button.accept {
    background-color: #4a7c2e;
    color: #fff;
}

.cookie-button.accept:hover {
    background-color: #3a6322;
}

.cookie-button.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5d4a;
}

.contact-page {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a3a0f;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d5016;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5d4a;
}

.legal-page {
    padding: 60px 20px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a3a0f;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5016;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5d4a;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a5d4a;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .intro-image {
        flex: 1 1 auto;
        width: 100%;
    }

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

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

    .approach-visual {
        flex: 1 1 auto;
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}