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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1rem 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;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-disclosure {
    font-size: 0.75rem;
    opacity: 0.85;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faf9;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5f4a;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #3a6249;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4a7c59;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #4a7c59;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.intro-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5f4a;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.section-header-centered {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3d1a;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #5a6f5a;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5f4a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-select {
    display: inline-block;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.service-select:hover {
    background-color: #3a6249;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f0f4f2;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5f4a;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #3a6249;
}

.main-footer {
    background-color: #1f3a1f;
    color: #d0e0d0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b8c8b8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-cookie.accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #3a6249;
}

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

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.page-hero-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faf9;
}

.page-hero-text h1 {
    font-size: 3rem;
    color: #1a3d1a;
    margin-bottom: 1rem;
}

.page-hero-text p {
    font-size: 1.2rem;
    color: #4a5f4a;
}

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

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

.about-mission-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.mission-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.mission-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5f4a;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a3d1a;
}

.values-grid-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-card p {
    font-size: 1rem;
    color: #4a5f4a;
    line-height: 1.6;
}

.team-approach-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 3rem;
    flex-direction: row-reverse;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.approach-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5f4a;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
}

.experience-section {
    padding: 4rem 2rem;
    background-color: #f0f4f2;
}

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

.experience-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.experience-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5f4a;
}

.cta-section-about {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #2c5f2d;
    color: #ffffff;
}

.cta-section-about h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f8faf9;
}

.services-hero h1 {
    font-size: 3rem;
    color: #1a3d1a;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: #4a5f4a;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5f4a;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2c5f2d;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: #4a5f4a;
}

.service-price-detail {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.services-cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f0f4f2;
}

.services-cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a3d1a;
}

.services-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5f4a;
}

.contact-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f8faf9;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #1a3d1a;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4a5f4a;
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a3d1a;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5f4a;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional-info {
    padding: 4rem 2rem;
    background-color: #f0f4f2;
}

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

.info-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3d1a;
}

.info-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5f4a;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a3d1a;
    margin-bottom: 1rem;
}

.thanks-container > p {
    font-size: 1.3rem;
    color: #4a5f4a;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #4a5f4a;
    margin-bottom: 0.8rem;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 4rem 2rem;
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a3d1a;
    margin-bottom: 1rem;
}

.legal-container > p:first-of-type {
    color: #6a7f6a;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a5f4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.7rem;
    color: #4a5f4a;
}

.legal-container a {
    color: #4a7c59;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #3a6249;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .page-hero-split,
    .service-card-split,
    .service-card-split.reverse,
    .service-detail-card-split,
    .service-detail-card-split.reverse,
    .form-container-split,
    .about-mission-split,
    .team-approach-split,
    .contact-info-split {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-text h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}