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

:root {
    --primary-color: #4a7c59;
    --secondary-color: #6b8e6f;
    --accent-color: #2d5a3d;
    --text-color: #2c3e3c;
    --text-light: #5f6d6b;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #d4ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--primary-color);
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
}

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

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

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

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

.split-image-left,
.split-image-right,
.split-content-left,
.split-content-right {
    flex: 1;
    display: flex;
}

.split-image-left,
.split-image-right {
    position: relative;
    overflow: hidden;
}

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

.split-content-right,
.split-content-left {
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-color);
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.services-showcase {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: var(--accent-color);
}

.btn-service.selected {
    background-color: var(--accent-color);
}

.form-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.form-wrapper {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.form-row {
    display: flex;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-full {
    width: 100%;
    padding: 16px;
}

.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.footer {
    background-color: var(--text-color);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bg-light);
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--bg-light);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.values-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-detail-content ul {
    margin: 20px 0 24px 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

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

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

.pricing-note {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-note h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.pricing-note p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-form-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-form-wrapper a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.map-section p {
    font-size: 17px;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-color);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-section {
    padding: 80px 0;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-section ul {
    margin: 16px 0 16px 20px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-color);
}

.cookie-table td {
    color: var(--text-light);
}

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

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

    .service-card {
        width: calc(50% - 15px);
    }

    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

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

@media (max-width: 640px) {
    .service-card {
        width: 100%;
    }

    .hero-left,
    .split-content-left,
    .split-content-right {
        padding: 40px 30px;
    }

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

    .section-header-center h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .container-fluid {
        padding: 0 20px;
    }
}