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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #6b9c3d;
    --light-green: #e8f3e0;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6a6a6a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    color: var(--dark-text);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-text);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-green);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.main-header {
    background: var(--bg-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--medium-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: var(--light-green);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.content-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-section,
.value-section {
    padding: 6rem 0;
}

.value-section {
    background: var(--bg-light);
}

.value-list {
    list-style: none;
    margin-top: 2rem;
}

.value-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--medium-text);
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.services-preview {
    padding: 8rem 0;
    background: var(--bg-white);
}

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

.section-header-centered h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.25rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
}

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

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

.form-section {
    padding: 6rem 0;
    background: var(--light-green);
}

.selected-service-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.selected-service-display h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.selected-service-display p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.form-block {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

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

.btn-submit:disabled {
    background: var(--light-text);
    cursor: not-allowed;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.cta-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

.cta-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--primary-green);
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.testimonial cite {
    font-style: normal;
    color: var(--light-text);
    font-weight: 500;
}

.final-cta {
    padding: 6rem 0;
    background: var(--primary-green);
    color: white;
}

.final-cta h2 {
    color: white;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.final-cta .cta-secondary {
    background: white;
    color: var(--primary-green);
    border: none;
}

.final-cta .cta-secondary:hover {
    background: var(--light-green);
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-green);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    padding: 1.5rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    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 {
    color: white;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--secondary-green);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: var(--light-green);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro,
.values-section,
.team-approach,
.equipment-section,
.commitment-section {
    padding: 6rem 0;
}

.values-section,
.commitment-section {
    background: var(--bg-light);
}

.principles-list {
    margin-top: 2rem;
}

.principle {
    margin-bottom: 2rem;
}

.principle h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.commitments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.commitment-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.cta-section {
    padding: 6rem 0;
    background: var(--light-green);
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.services-detail {
    padding: 4rem 0;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0 1.5rem;
}

.pricing-notes {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-cta {
    padding: 6rem 0;
    background: var(--primary-green);
    text-align: center;
}

.service-cta h2 {
    color: white;
}

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

.contact-section {
    padding: 6rem 0;
}

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

.contact-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.service-areas {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-areas ul {
    list-style: none;
    padding-left: 1.5rem;
}

.service-areas ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.service-areas ul li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.faq-section {
    padding: 6rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-green);
    font-size: 1.125rem;
}

.contact-cta {
    padding: 6rem 0;
    background: var(--light-green);
}

.thanks-hero {
    padding: 8rem 0;
    background: var(--light-green);
}

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

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content .lead {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.service-reminder {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.service-reminder h3 {
    margin-bottom: 0.75rem;
}

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

.next-steps {
    padding: 6rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.text-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.text-link:hover {
    color: var(--secondary-green);
}

.contact-reminder {
    padding: 6rem 0;
    background: var(--light-green);
}

.legal-page {
    padding: 4rem 0;
}

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

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--medium-text);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-green);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .commitments-grid,
    .faq-grid {
        flex-direction: column;
    }

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

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

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

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.875rem;
    }

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

    .page-hero h1 {
        font-size: 2.25rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .thanks-details {
        padding: 2rem 1.5rem;
    }
}