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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a8359;
    --accent-color: #7cb87f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e4df;
}

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 0 auto;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: var(--bg-white);
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.content-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4e4d8;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0 1.5rem 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.commitment-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.link-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: border-color 0.3s;
}

.link-inline:hover {
    border-bottom-color: var(--primary-color);
}

.footer {
    background-color: var(--text-dark);
    color: #e0e4df;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-column ul li a {
    color: #e0e4df;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto 1rem;
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #b0b8b0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1.5rem;
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #e0e4df;
    margin: 0;
}

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

.cookie-actions .btn-primary {
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-actions .btn-primary:hover {
    background-color: var(--secondary-color);
}

.cookie-actions .btn-secondary {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #e0e4df;
    border: 2px solid #e0e4df;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.page-hero {
    padding: 5rem 0 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.text-block {
    margin-top: 2rem;
}

.text-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.values-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.approach-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.team-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .cta-primary:hover {
    background-color: var(--bg-light);
}

.services-detailed {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.service-meta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

.contact-info-section {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.contact-visual {
    flex: 1;
    background-color: #d4e4d8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.location-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.location-section > .container > p {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.location-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.location-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.thanks-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.thanks-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.legal-page {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

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

.legal-page ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.legal-page a:hover {
    border-bottom-color: var(--primary-color);
}

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

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .hero-right {
        min-height: 400px;
    }

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

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

    .service-detail-image {
        min-height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

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

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