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

:root {
    --primary-green: #2d5f3f;
    --secondary-green: #4a8359;
    --light-green: #e8f4ed;
    --accent-gold: #c9a961;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6b6b6b;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.main-nav {
    background-color: var(--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;
}

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

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--light-text);
    border-left: 1px solid var(--border-color);
    padding-left: 2rem;
}

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

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

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 6rem;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.8rem;
    color: var(--primary-green);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.intro-image {
    flex: 1;
    background-color: var(--light-green);
    overflow: hidden;
}

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

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

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

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

.section-header-centered p {
    font-size: 1.15rem;
    color: var(--medium-text);
}

.service-row {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.service-visual {
    flex: 1;
    background-color: var(--light-green);
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

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

.service-select {
    padding: 0.9rem 2rem;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.service-select:hover {
    background-color: var(--secondary-green);
    transform: translateY(-1px);
}

.trust-section {
    display: flex;
    align-items: stretch;
    background-color: var(--light-green);
}

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

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

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.trust-visual {
    flex: 1;
    background-color: var(--secondary-green);
    overflow: hidden;
}

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

.testimonial-section {
    padding: 6rem 4rem;
    background-color: var(--white);
}

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

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

.testimonial {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-gold);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: normal;
}

.form-section {
    display: flex;
    align-items: stretch;
}

.form-visual {
    flex: 1;
    background-color: var(--light-green);
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 5rem 6rem;
    background-color: var(--primary-green);
    color: var(--white);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.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;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.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: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--primary-green);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 1.5rem 2rem;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: var(--medium-text);
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.cookie-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.cookie-btn.reject {
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.cookie-btn.reject:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.thanks-box {
    max-width: 700px;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.thanks-box .service-highlight {
    font-weight: 600;
    color: var(--accent-gold);
}

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

.content-page h1 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.content-page h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.content-page h3 {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.content-page ul,
.content-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 0.6rem;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 5rem 6rem;
    background-color: var(--primary-green);
    color: var(--white);
}

.contact-info h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-visual {
    flex: 1;
    background-color: var(--light-green);
    overflow: hidden;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-row,
    .trust-section,
    .form-section,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-content,
    .service-details,
    .trust-content,
    .form-container,
    .contact-info {
        padding: 3rem 2rem;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}