* {
    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: #2c3e50;
    background: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 6% 80px 8%;
    background: #f7f9f7;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 36px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c5530;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.hero-right {
    flex: 1;
    background: #e8ebe8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 6%;
    gap: 80px;
    align-items: center;
}

.intro-content {
    flex: 1.4;
}

.intro-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background: #e8ebe8;
}

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

.services-grid {
    padding: 100px 6%;
    background: #fafbfa;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.services-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e8ebe8;
}

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

.service-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 24px;
    display: block;
}

.select-service {
    padding: 14px 32px;
    background: #2c5530;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.trust-block {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.trust-image {
    flex: 1;
    background: #e8ebe8;
}

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

.form-section {
    padding: 100px 6%;
    background: #f7f9f7;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.form-wrapper > p {
    font-size: 17px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 2px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    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: #2c5530;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5530;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #1a1a1a;
    color: #e9ecef;
    padding: 60px 6% 24px;
}

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

.footer-block h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-block h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #adb5bd;
    max-width: 320px;
}

.footer-block a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 32px 0;
    border-top: 1px solid #343a40;
    border-bottom: 1px solid #343a40;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #868e96;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #868e96;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #495057;
}

.cookie-content a {
    color: #2c5530;
}

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

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

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

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

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

.btn-reject:hover {
    background: #d1d5db;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 6%;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-container .service-selected {
    font-size: 20px;
    font-weight: 600;
    color: #2c5530;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .service-card-split,
    .trust-block {
        flex-direction: column;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .services-header h2 {
        font-size: 32px;
    }
}