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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #7a9e87;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

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

.cta-primary:hover {
    background-color: #1f4429;
    cursor: pointer;
}

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

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

.intro-image-left {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.intro-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.services-preview {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.service-select {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #1f4429;
}

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

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

.form-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container-right {
    flex: 1;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1f4429;
}

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

.trust-content-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.trust-content-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.trust-image-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.5;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    display: none;
    z-index: 2000;
}

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

.cookie-content {
    max-width: 1400px;
    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;
    align-items: center;
}

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

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.cookie-learn-more {
    color: var(--bg-white);
    text-decoration: underline;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.story-image-left {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.story-content-right h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: var(--bg-light);
}

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

.values-content-left h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.values-image-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.team-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.team-member {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.member-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

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

.cta-content-left h2 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-content-left .cta-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.cta-content-left .cta-primary:hover {
    background-color: #c69563;
}

.cta-image-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

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

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

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

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

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

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

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

.service-detail-content li {
    margin-bottom: 0.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

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

.contact-details-left {
    flex: 1;
    padding: 3rem;
    background-color: var(--bg-light);
}

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

.contact-details-left > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

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

.contact-cta-split.reverse {
    flex-direction: row-reverse;
}

.contact-cta-image-left {
    flex: 1;
    background-color: var(--secondary-color);
}

.contact-cta-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-content-right {
    flex: 1;
    padding: 3rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta-content-right h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-cta-content-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-cta-content-right ol {
    margin-left: 1.5rem;
}

.contact-cta-content-right li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 2rem auto;
}

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

.thanks-content-left h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-image-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.next-steps-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.next-steps-split.reverse {
    flex-direction: row-reverse;
}

.next-steps-image-left {
    flex: 1;
    background-color: var(--secondary-color);
}

.next-steps-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-steps-content-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-steps-content-right h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.timeline-item h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

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

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

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

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .story-split,
    .values-split,
    .cta-split,
    .form-split-container,
    .contact-info-split,
    .contact-cta-split,
    .thanks-split,
    .next-steps-split,
    .service-detail-split,
    .page-hero-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .story-split.reverse,
    .contact-cta-split.reverse,
    .next-steps-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

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

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

    .team-grid-split {
        flex-direction: column;
    }

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