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

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

.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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f5f8f5;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

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

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #234a24;
}

.hero-image {
    flex: 1;
    background-color: #d4e4d4;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-card img {
    width: 45%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8f0e8;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 0;
    background-color: #fafbfa;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 220px;
    overflow: hidden;
    background-color: #e8f0e8;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    color: #1a3a1a;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #234a24;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.secondary-link {
    color: #2c5f2d;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.secondary-link:hover {
    opacity: 0.8;
}

.form-section {
    padding: 80px 0;
    background-color: #f5f8f5;
}

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

.form-wrapper h2 {
    font-size: 36px;
    color: #1a3a1a;
    margin-bottom: 20px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #234a24;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.testimonial {
    background-color: #f5f8f5;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
}

.testimonial p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #2c5f2d;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fef9f3;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a3a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #c9d9c9;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c5f2d;
    color: #c9d9c9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a1a;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

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

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

.selected-service-info {
    background-color: #f5f8f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

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

    .intro-card img {
        width: 100%;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}