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

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

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

.nav-right a:hover {
    color: #2d6a4f;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
}

.hero-content-offset {
    width: 50%;
    padding: 60px 5% 60px 8%;
    z-index: 10;
}

.hero-text-block {
    max-width: 520px;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1b4332;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: #40916c;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2d6a4f;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.2);
}

.cta-primary:hover {
    background: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 75%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
    background-color: #95d5b2;
}

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

.intro-offset {
    padding: 80px 5%;
    background: #ffffff;
}

.intro-narrow {
    max-width: 680px;
    margin-left: 12%;
}

.intro-narrow p {
    font-size: 21px;
    line-height: 1.8;
    color: #52796f;
}

.values-asymmetric {
    padding: 100px 5%;
    background: #f8faf9;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.value-card.offset-left {
    margin-right: 15%;
    transform: translateX(-30px);
}

.value-card.offset-right {
    margin-left: 15%;
    transform: translateX(30px);
}

.value-icon {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #d8f3dc;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-text h3 {
    font-size: 28px;
    color: #1b4332;
    margin-bottom: 16px;
}

.value-text p {
    font-size: 17px;
    color: #52796f;
    line-height: 1.7;
}

.services-grid {
    padding: 100px 5%;
    background: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 8%;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 16px;
}

.section-header-offset p {
    font-size: 18px;
    color: #52796f;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 30px);
    min-width: 300px;
    background: #f8faf9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #b7e4c7;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1b4332;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: #52796f;
    line-height: 1.6;
}

.service-price {
    padding: 0 24px 20px;
    font-size: 26px;
    font-weight: 700;
    color: #2d6a4f;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1b4332;
}

.form-section-offset {
    padding: 100px 5%;
    background: linear-gradient(135deg, #d8f3dc 0%, #f0f9f4 100%);
}

.form-container {
    max-width: 580px;
    margin-left: auto;
    margin-right: 10%;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 34px;
    color: #1b4332;
    margin-bottom: 12px;
}

.form-container p {
    font-size: 16px;
    color: #52796f;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #d8f3dc;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8faf9;
    color: #2d6a4f;
    font-weight: 600;
}

.submit-btn {
    padding: 16px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

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

.trust-section {
    padding: 100px 5%;
    background: #1b4332;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #95d5b2;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #d8f3dc;
}

footer {
    background: #0f2419;
    color: #b7e4c7;
    padding: 60px 5% 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    color: #95d5b2;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #b7e4c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2d6a4f;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #74c69d;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 5%;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

.cookie-content a {
    color: #2d6a4f;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: #e9ecef;
    color: #495057;
}

.cookie-btn.reject:hover {
    background: #dee2e6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, #d8f3dc 0%, #f0f9f4 100%);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2d6a4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 36px;
    color: #1b4332;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 17px;
    color: #52796f;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-service {
    background: #f0f9f4;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.thanks-service strong {
    color: #2d6a4f;
    font-size: 18px;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 40px;
    color: #1b4332;
    margin-bottom: 16px;
}

.legal-page .update-date {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2d6a4f;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 5%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #52796f;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.info-block {
    background: #f8faf9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-block h3 {
    font-size: 20px;
    color: #1b4332;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #d8f3dc;
    border-radius: 8px;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 5%;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 0;
        top: 0;
    }

    .hero-text-block {
        transform: none;
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

    .value-card {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
    }

    .value-icon {
        width: 100%;
    }

    .trust-points {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .form-container {
        margin-right: 0;
    }

    .section-header-offset {
        margin-left: 0;
    }
}
