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

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

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

.navigation-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #636e72;
    padding: 0.3rem 0.7rem;
    background-color: #f5f6fa;
    border-radius: 4px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3436;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2c5f2d;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.15rem;
    color: #636e72;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #e8ebe8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.intro-content {
    max-width: 720px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #636e72;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.service-image {
    flex: 1;
    background-color: #e8ebe8;
}

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

.service-details {
    flex: 1;
    padding: 2.5rem;
}

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

.service-details p {
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    color: #636e72;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.trust-section {
    padding: 5rem 5%;
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer {
    background-color: #1a1a1a;
    color: #b2bec3;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    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: #b2bec3;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3436;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #636e72;
    max-width: 900px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background-color: #636e72;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5458;
}

.page-header-split {
    padding: 5rem 5%;
    background-color: #2c5f2d;
    text-align: center;
}

.header-content h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: #d3e4d3;
}

.about-split-section {
    display: flex;
    gap: 3rem;
    padding: 5rem 5%;
    align-items: center;
}

.about-image-left {
    flex: 1;
    background-color: #e8ebe8;
}

.about-image-left img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.about-text-right {
    flex: 1;
}

.about-text-right h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.about-text-right p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.value-item p {
    font-size: 0.98rem;
    color: #636e72;
    line-height: 1.6;
}

.methodology-split {
    display: flex;
    gap: 3rem;
    padding: 5rem 5%;
    align-items: center;
}

.method-text-left {
    flex: 1;
}

.method-text-left h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.method-text-left p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.method-image-right {
    flex: 1;
    background-color: #e8ebe8;
}

.method-image-right img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.team-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.team-section p {
    font-size: 1.05rem;
    color: #636e72;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 4rem;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e8ebe8;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 8px;
}

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

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

.service-detail-content p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    color: #2d3436;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail-content ul {
    list-style-position: inside;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    line-height: 1.6;
}

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

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

.cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #d3e4d3;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.1rem 3rem;
    background-color: #ffffff;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.contact-split-section {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e8ebe8;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
}

.additional-info {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

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

.info-container h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.info-container p {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.thanks-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2c5f2d;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c5f2d;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
}

.legal-page {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

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

.legal-container p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container ul li {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1e4620;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dfe6e9;
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 0.9rem;
    text-align: left;
    font-weight: 600;
    color: #2d3436;
    border-bottom: 2px solid #dfe6e9;
}

.cookie-table td {
    padding: 0.9rem;
    border-bottom: 1px solid #dfe6e9;
    color: #636e72;
    font-size: 0.95rem;
}

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

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

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .navigation-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left {
        flex-direction: column;
        gap: 0.8rem;
    }

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

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

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

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