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

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

a {
    color: #2d7d3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e5a2b;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2d7d3e;
}

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

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-cta {
    display: inline-block;
    background: #2d7d3e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #1e5a2b;
    color: #ffffff;
}

.split-reverse {
    display: flex;
    padding: 4rem 0;
}

.split-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.text-link {
    color: #2d7d3e;
    font-weight: 600;
    font-size: 1.1rem;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d7d3e;
    margin-bottom: 1rem;
}

.btn-service {
    background: #2d7d3e;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #1e5a2b;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-content p {
    font-size: 1.1rem;
    color: #4a5568;
}

.form-container {
    flex: 1;
}

.service-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-form input {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #2d7d3e;
}

.selected-service-display p {
    margin: 0;
    font-size: 0.95rem;
    color: #1e5a2b;
}

.btn-submit {
    background: #2d7d3e;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.split-even {
    display: flex;
}

.trust-block {
    background: #f8f9fa;
}

.cta-split {
    padding: 5rem 0;
}

.cta-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
}

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

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

.btn-cta-large {
    display: inline-block;
    background: #2d7d3e;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    align-self: flex-start;
}

.btn-cta-large:hover {
    background: #1e5a2b;
    color: #ffffff;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

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

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

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

.footer-column a {
    color: #e0e0e0;
}

.footer-column a:hover {
    color: #2d7d3e;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.btn-sticky {
    display: block;
    background: #2d7d3e;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-sticky:hover {
    background: #1e5a2b;
    color: #ffffff;
    transform: scale(1.05);
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-primary {
    background: #2d7d3e;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.page-hero {
    background: #f8f9fa;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro,
.values-section,
.impact-section {
    padding: 4rem 2rem;
}

.values-section {
    background: #f8f9fa;
}

.split-content strong {
    color: #2d7d3e;
}

.team-approach {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.approach-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d7d3e;
}

.approach-item p {
    color: #4a5568;
}

.cta-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

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

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

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.service-detail-visual {
    flex: 1;
    max-width: 500px;
}

.service-detail-visual img {
    border-radius: 8px;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d7d3e;
    margin: 1.5rem 0;
}

.btn-service-large {
    background: #2d7d3e;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service-large:hover {
    background: #1e5a2b;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d7d3e;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-detail .note {
    font-size: 0.95rem;
    font-style: italic;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    max-width: 500px;
}

.contact-visual img {
    border-radius: 8px;
}

.contact-approach {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
    color: #1e5a2b;
}

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

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    text-align: left;
}

.step {
    flex: 1;
    max-width: 250px;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d7d3e;
}

.step p {
    font-size: 0.95rem;
    color: #4a5568;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-content .updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-even,
    .form-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .split-content h2,
    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .next-steps {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content,
    .split-content,
    .cta-content {
        padding: 2rem 1.5rem;
    }

    .services-preview,
    .form-section {
        padding: 3rem 1rem;
    }

    .btn-cta,
    .btn-submit {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}