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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d6549;
}

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

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

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f8f6f3;
    padding: 80px 40px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #3d6549;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background: #d4c5b0;
}

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

.intro-block {
    padding: 100px 40px;
    background: #ffffff;
}

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

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

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.feature-showcase {
    background: #fafafa;
    padding: 80px 40px;
}

.feature-item {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-item img {
    width: 50%;
    height: auto;
    object-fit: cover;
    background: #d4c5b0;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.dark-block {
    background: #2c2c2c;
    color: #ffffff;
    padding: 100px 40px;
}

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

.dark-block h2 {
    font-size: 48px;
    margin-bottom: 16px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    color: #cccccc;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #4a4a4a;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 20px;
    color: #cccccc;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin: 0 24px 20px;
}

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

.btn-select:hover {
    background: #3d6549;
}

.service-card.selected {
    border: 3px solid #4a7c59;
}

.form-section {
    background: #f8f6f3;
    padding: 100px 40px;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: #4a4a4a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3d6549;
    transform: translateY(-2px);
}

.trust-block {
    background: #ffffff;
    padding: 100px 40px;
}

.trust-block h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
}

.testimonial {
    background: #f8f6f3;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid #4a7c59;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-style: italic;
}

.testimonial cite {
    font-size: 16px;
    color: #666666;
    font-style: normal;
}

.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333333;
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
    }

    .feature-item img {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

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