* {
    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;
}

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

.main-nav {
    background-color: #1a4d2e;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

.hero-left h1 {
    font-size: 56px;
    color: #1a4d2e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d4e7d4;
}

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

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

.cta-primary:hover {
    background-color: #1b4332;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 90px auto;
    gap: 60px;
    padding: 0 30px;
}

.intro-image {
    flex: 1;
    background-color: #e8f3e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 40px 0;
}

.intro-text h2 {
    font-size: 42px;
    color: #1a4d2e;
    margin-bottom: 28px;
}

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

.services-showcase {
    background-color: #ffffff;
    padding: 90px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-showcase h2 {
    text-align: center;
    font-size: 44px;
    color: #1a4d2e;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

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

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #d4e7d4;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    color: #4a5568;
    font-size: 16px;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 26px;
    font-weight: 700;
    color: #2d6a4f;
}

.service-card .select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-section-split {
    display: flex;
    background-color: #f4f9f4;
    padding: 80px 0;
}

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

.why-text h2 {
    font-size: 40px;
    color: #1a4d2e;
    margin-bottom: 28px;
}

.why-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.why-image {
    flex: 1;
    background-color: #d4e7d4;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2d6a4f;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid #2d6a4f;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 15px;
}

.cta-secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
}

.form-section {
    background-color: #ffffff;
    padding: 90px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 38px;
    color: #1a4d2e;
    margin-bottom: 18px;
}

.form-container p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 45px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #1b4332;
}

.main-footer {
    background-color: #1a4d2e;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    color: #a8d5ba;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #a8d5ba;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d6a4f;
    text-align: center;
    font-size: 14px;
    color: #a8d5ba;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background-color: #1b4332;
}

.btn-cookie-reject {
    background-color: #e2e8f0;
    color: #2c3e50;
}

.btn-cookie-reject:hover {
    background-color: #cbd5e0;
}

.content-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

.content-page h1 {
    font-size: 42px;
    color: #1a4d2e;
    margin-bottom: 30px;
}

.content-page h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.content-page ul,
.content-page ol {
    margin: 20px 0 20px 30px;
    color: #4a5568;
}

.content-page li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f4f9f4;
    padding: 35px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info strong {
    color: #1a4d2e;
}

.thanks-page {
    max-width: 700px;
    margin: 120px auto;
    padding: 60px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 44px;
    color: #2d6a4f;
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-page .cta-primary {
    margin-top: 30px;
}

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

    .hero-right,
    .intro-image,
    .why-image {
        min-height: 350px;
    }

    .service-card {
        width: 100%;
    }

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

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

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