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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    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;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c7a51;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

.hero-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

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

.hero-subtext {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2c7a51;
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1b5e20;
}

.hero-visual {
    flex: 1;
}

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

.intro-block {
    background: #ffffff;
    padding: 5rem 2rem;
}

.container-narrow {
    max-width: 850px;
    margin: 0 auto;
}

.intro-block h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 1.8rem;
    text-align: center;
}

.intro-block p {
    font-size: 1.2rem;
    color: #455a64;
    text-align: center;
    line-height: 1.8;
}

.trust-signals {
    background: #f5f5f5;
    padding: 4rem 2rem;
}

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

.signal-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.signal-item {
    flex: 1;
    max-width: 380px;
    text-align: center;
}

.signal-icon {
    width: 70px;
    height: 70px;
    background: #2c7a51;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.signal-item h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.signal-item p {
    color: #546e7a;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-overview {
    background: #ffffff;
    padding: 6rem 2rem;
}

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

.services-overview h2 {
    font-size: 2.8rem;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 1.2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 4rem;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-header {
    flex: 0 0 320px;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6f00;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-body {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.8rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.service-body > p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #455a64;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c7a51;
    font-weight: 700;
}

.service-price {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid #e8f5e9;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b5e20;
    display: block;
    margin-bottom: 0.3rem;
}

.price-unit {
    color: #78909c;
    font-size: 0.95rem;
}

.testimonial-block {
    background: #2c7a51;
    padding: 5rem 2rem;
}

.testimonial {
    border-left: 4px solid #ffffff;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.4rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    color: #c8e6c9;
    font-style: normal;
    font-size: 1.1rem;
}

.process-block {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.process-block h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c7a51;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.step p {
    color: #546e7a;
    line-height: 1.6;
}

.form-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.form-section h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: #546e7a;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.booking-form {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: #2c7a51;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: #2c7a51;
    color: #ffffff;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.why-choose {
    background: #e8f5e9;
    padding: 5rem 2rem;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.feature-block {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.feature-block h3 {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.feature-block p {
    color: #546e7a;
    line-height: 1.7;
}

.cta-footer-block {
    background: #1b5e20;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-footer-block h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-footer-block p {
    font-size: 1.2rem;
    color: #c8e6c9;
    margin-bottom: 2.5rem;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #1b5e20;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #e8f5e9;
}

.site-footer {
    background: #263238;
    color: #b0bec5;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #263238;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-accept {
    background: #2c7a51;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1b5e20;
}

.btn-reject {
    background: #546e7a;
    color: #ffffff;
}

.btn-reject:hover {
    background: #37474f;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.thanks-content {
    max-width: 650px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-content .selected-service {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #1b5e20;
}

.back-link {
    display: inline-block;
    color: #2c7a51;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1b5e20;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-block {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

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

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

    .service-card {
        flex-direction: column;
    }

    .service-header {
        flex: 0 0 250px;
    }

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

    .features-layout {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .services-overview h2,
    .process-block h2,
    .why-choose h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }
}