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

.ad-disclosure {
    background-color: #f4f1e8;
    color: #6b5d47;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0d9c7;
}

.navbar {
    background-color: #2d5a3d;
    padding: 0;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: #e8f2ea;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #a8d5a8;
}

.hero-split {
    display: flex;
    min-height: 650px;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1f3d2f;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5d54;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #3d7a4f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: #2f5f3d;
    transform: translateY(-2px);
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1f3d2f;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5d54;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.link-arrow {
    color: #3d7a4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2f5f3d;
}

.link-arrow::after {
    content: ' →';
    margin-left: 8px;
}

.services-grid {
    padding: 90px 40px;
    background-color: #f7f9f7;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1f3d2f;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6d64;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 12px;
    color: #1f3d2f;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 25px 20px;
    color: #5a6d64;
    flex-grow: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #3d7a4f;
    margin: 0 25px 20px;
}

.btn-select-service {
    background-color: #3d7a4f;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 25px 25px;
    border-radius: 5px;
}

.btn-select-service:hover {
    background-color: #2f5f3d;
}

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

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

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

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #5a6d64;
    margin-bottom: 45px;
}

.contact-form {
    background-color: #f7f9f7;
    padding: 45px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d4ddd7;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #2f5f3d;
}

.footer {
    background-color: #1f3d2f;
    color: #e8f2ea;
    padding: 60px 40px 30px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #c5d9c5;
}

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

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

.footer-column ul li a {
    color: #c5d9c5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2f5a44;
    color: #a8c4a8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e3d;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px 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;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #3d7a4f;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #2f5f3d;
}

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

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(31, 61, 47, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.text-section-centered {
    padding: 80px 40px;
    background-color: #ffffff;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-container h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1f3d2f;
    font-weight: 700;
}

.text-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5d54;
}

.services-detail {
    padding: 60px 40px;
    background-color: #fafafa;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 50px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-detail-split {
    display: flex;
    min-height: 450px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1f3d2f;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5d54;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #3d7a4f;
    margin: 25px 0 20px;
}

.cta-full {
    padding: 90px 40px;
    background-color: #2d5a3d;
    text-align: center;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-content-centered p {
    font-size: 18px;
    color: #d0e5d0;
    margin-bottom: 35px;
}

.contact-split {
    display: flex;
    min-height: 550px;
}

.contact-info {
    flex: 1;
    padding: 70px 60px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1f3d2f;
    font-weight: 700;
}

.contact-info > p {
    font-size: 17px;
    color: #5a6d64;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1f3d2f;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a5d54;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.legal-container h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2f5a44;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #3d7a4f;
    font-weight: 600;
}

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

.legal-container ul {
    margin: 15px 0 20px 30px;
    color: #4a5d54;
}

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f7f9f7;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #3d7a4f;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1f3d2f;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5d54;
}

#selectedServiceMessage {
    font-weight: 600;
    color: #3d7a4f;
    font-size: 19px;
}

.disclaimer-section {
    padding: 70px 40px;
    background-color: #fef9f0;
    border-top: 2px solid #e8dcc0;
    border-bottom: 2px solid #e8dcc0;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #6b5d47;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #6b5d47;
}

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

    .split-section.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-overlay h1 {
        font-size: 36px;
    }

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

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

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

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}