* {
    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: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2f;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-accept {
    background-color: #6b8e65;
    color: #fff;
}

.btn-accept:hover {
    background-color: #5a7856;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.main-nav a {
    color: #555;
    font-weight: 500;
}

.main-nav a:hover {
    color: #6b8e65;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8faf8;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2c3e2f;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #6b8e65;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

.cta-primary:hover {
    background-color: #5a7856;
}

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.intro-asymmetric {
    padding: 5rem 4rem;
    background-color: #fff;
}

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

.intro-block {
    flex: 1;
}

.intro-block h2 {
    font-size: 2rem;
    color: #2c3e2f;
    margin-bottom: 1rem;
}

.intro-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.intro-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.services-split {
    padding: 5rem 4rem;
    background-color: #f8faf8;
}

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

.services-header h2 {
    font-size: 2.2rem;
    color: #2c3e2f;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.05rem;
    color: #666;
}

.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: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.2rem;
    color: #2c3e2f;
    margin-bottom: 0.75rem;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6b8e65;
    margin-bottom: 1rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #2c3e2f;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

.btn-service:hover {
    background-color: #3d5540;
}

.process-split {
    display: flex;
}

.process-left {
    flex: 1;
}

.process-left img {
    width: 100%;
    height: 100%;
}

.process-right {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

.process-right h2 {
    font-size: 2rem;
    color: #2c3e2f;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding-left: 4rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4e3d0;
}

.step h4 {
    font-size: 1.15rem;
    color: #2c3e2f;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.testimonials-offset {
    padding: 5rem 4rem;
    background-color: #2c3e2f;
    color: #fff;
}

.testimonials-offset h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #b8cfb4;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 4rem;
    gap: 4rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2rem;
    color: #2c3e2f;
    margin-bottom: 1rem;
}

.form-left p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.benefit-item {
    padding: 0.75rem 1rem;
    background-color: #f8faf8;
    border-left: 4px solid #6b8e65;
    font-weight: 500;
    color: #2c3e2f;
}

.form-right {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b8e65;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #6b8e65;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-submit:hover {
    background-color: #5a7856;
}

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #f8faf8;
}

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

.disclaimer-content h3 {
    font-size: 1.3rem;
    color: #2c3e2f;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.footer-split {
    background-color: #2c3e2f;
    color: #fff;
    padding: 3rem 4rem 2rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: #b8cfb4;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b8cfb4;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1200px;
    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.85rem;
    color: #b8cfb4;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 2rem;
    }

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

    .intro-offset {
        flex-direction: column;
    }

    .services-split {
        padding: 3rem 2rem;
    }

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

    .process-split {
        flex-direction: column;
    }

    .process-right {
        padding: 2rem;
    }

    .form-split {
        flex-direction: column;
        padding: 0 2rem;
        gap: 2rem;
    }

    .footer-top {
        flex-direction: column;
    }
}