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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e2f;
    background-color: #fdfcf9;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    color: #4a7c59;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5037;
}

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

.ad-disclosure {
    background-color: #f4f1e8;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: #6b7c6e;
    border-bottom: 1px solid #e1ddd0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2f;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #7ba885;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #6a9474;
}

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

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

.nav-floating {
    background-color: rgba(253, 252, 249, 0.95);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e5d8;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 400;
    color: #2c3e2f;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: #5a6b5d;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f6f1;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: #2c3e2f;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #5a6b5d;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6849;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #4a7c59;
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    border: 1px solid #4a7c59;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 1;
    background-color: #e8e5d8;
    position: relative;
    overflow: hidden;
}

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

.stats-section {
    background-color: #2c3e2f;
    color: #ffffff;
    padding: 5rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #a8c9af;
}

.stat-item p {
    font-size: 1.1rem;
    color: #d4dfd6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item h4 {
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f6f1;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    flex-grow: 1;
    color: #5a6b5d;
}

.service-card .price {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 400;
    color: #4a7c59;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-section {
    background-color: #e8e5d8;
    padding: 5rem 2rem;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

blockquote {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #4a7c59;
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e2f;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7c6e;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #fdfcf9;
}

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

.form-info {
    flex: 1;
}

.form-container {
    flex: 1;
    background-color: #f8f6f1;
    padding: 2.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2c3e2f;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1cec1;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c3e2f;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.footer {
    background-color: #2c3e2f;
    color: #d4dfd6;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #d4dfd6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 223, 214, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a8c9af;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #8a9b8d;
    line-height: 1.5;
}

.page-header {
    background-color: #f8f6f1;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #5a6b5d;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content li {
    margin-bottom: 0.7rem;
    color: #5a6b5d;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e5d8;
}

.pricing-box {
    background-color: #f8f6f1;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7c6e;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: #4a7c59;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.price-period {
    font-size: 0.95rem;
    color: #6b7c6e;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f6f1;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.value-item h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.certifications-section {
    padding: 5rem 2rem;
    background-color: #2c3e2f;
    color: #ffffff;
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.cert-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cert-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    text-align: center;
}

.cert-item p {
    margin: 0;
    color: #d4dfd6;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #fdfcf9;
}

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

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

.cta-about h2 {
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6b5d;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    color: #4a7c59;
    margin-bottom: 0.7rem;
}

.contact-item p {
    color: #5a6b5d;
}

.contact-note {
    font-size: 0.9rem;
    color: #8a9b8d;
    font-style: italic;
}

.response-time {
    background-color: #f8f6f1;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-map {
    flex: 1;
    background-color: #e8e5d8;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-area {
    padding: 2rem;
    background-color: #ffffff;
}

.service-area h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
}

.visit-section {
    padding: 5rem 2rem;
    background-color: #f8f6f1;
}

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

.faq-section {
    padding: 5rem 2rem;
    background-color: #fdfcf9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8e5d8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #4a7c59;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #5a6b5d;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-content h1 {
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.thanks-details {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f6f1;
}

.service-selected {
    font-weight: 600;
    color: #4a7c59;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    margin-bottom: 1.5rem;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next li {
    margin-bottom: 1rem;
    color: #5a6b5d;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #8a9b8d;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4a7c59;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    color: #5a6b5d;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e5d8;
}

.cookies-table th {
    background-color: #f8f6f1;
    font-weight: 400;
    color: #4a7c59;
}

.cookies-table td {
    color: #5a6b5d;
}

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

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

    .hero-image,
    .split-image {
        min-height: 400px;
    }

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

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

    .form-split,
    .contact-split {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
