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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #ff6b35;
}

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.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);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.split-hero {
    min-height: 600px;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.split-text {
    flex: 1;
}

.split-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.split-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-section {
    padding: 80px 0;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
}

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

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.btn-text:hover {
    color: #234d24;
    border-color: #234d24;
}

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 70px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.service-price-list {
    margin: 30px 0;
}

.service-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-split {
    background: var(--bg-white);
}

.cta-split .split-content {
    gap: 0;
}

.dark-bg {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 12px 0 0 12px;
}

.dark-bg h2 {
    color: white;
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.9);
}

.split-form {
    flex: 1;
    background: var(--bg-light);
    padding: 60px;
    border-radius: 0 12px 12px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #a8d40e;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: white;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #234d24);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-section {
    padding: 80px 0;
}

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

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    min-height: 55px;
}

.price-card .description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-intro {
    margin-bottom: 60px;
}

.form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-wrapper .split-content {
    padding: 0;
    gap: 0;
}

.form-wrapper .split-text {
    padding: 60px;
}

.form-wrapper .split-form {
    background: var(--bg-light);
}

.contact-main {
    padding: 80px 0;
}

.contact-info {
    margin: 40px 0;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    margin-top: 30px;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.map-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    padding: 100px;
    text-align: center;
    font-size: 24px;
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
}

.update-date {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookies-table thead {
    background: var(--primary-color);
    color: white;
}

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

.cookies-table th {
    font-weight: 600;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-content .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-message {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-message p {
    margin: 0;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.thanks-info strong {
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .split-content {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

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

    .split-text h1 {
        font-size: 36px;
    }

    .split-text h2 {
        font-size: 28px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .dark-bg,
    .split-form {
        border-radius: 12px;
    }

    .dark-bg {
        padding: 40px 30px;
    }

    .split-form {
        padding: 40px 30px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero {
        padding: 60px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .price-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .map-placeholder {
        padding: 60px 30px;
        font-size: 18px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .step {
        max-width: 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}