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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fafafa;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.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;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.nav-brand a {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-items a {
    color: #2d2d2d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-items a:hover {
    color: #4CAF50;
}

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    align-items: stretch;
    background: #f5f5f5;
}

.hero-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

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

.hero-text-block p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2d2d2d;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.hero-image-block {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-right {
    flex: 0.8;
    background: #f0f0f0;
}

.intro-right img {
    width: 100%;
    height: auto;
}

.services-cards-offset {
    padding: 80px 60px;
    background: #fafafa;
}

.services-cards-offset h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-card {
    width: 340px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 30px;
}

.service-card.offset-3 {
    margin-top: -15px;
}

.service-card.offset-4 {
    margin-top: 20px;
}

.service-card.offset-5 {
    margin-top: -10px;
}

.service-card.offset-6 {
    margin-top: 25px;
}

.service-card img {
    width: 100%;
    height: 220px;
    background: #e0e0e0;
}

.service-card h3 {
    padding: 20px 24px 10px;
    font-size: 22px;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
    padding: 0 24px 20px;
}

.service-card .select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #2d2d2d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.service-card .select-service:hover {
    background: #4CAF50;
}

.form-section {
    padding: 100px 60px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 600px;
    width: 100%;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    margin-bottom: 36px;
    font-size: 17px;
    color: #5a5a5a;
}

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

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.service-info {
    padding: 16px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #2d2d2d;
    display: none;
}

.service-info.show {
    display: block;
}

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

.btn-submit:hover {
    background: #4CAF50;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-block {
    padding: 80px 60px;
    background: #f5f5f5;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step {
    width: 280px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step:nth-child(1) {
    margin-top: 0;
}

.step:nth-child(2) {
    margin-top: 30px;
}

.step:nth-child(3) {
    margin-top: -20px;
}

.step:nth-child(4) {
    margin-top: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.disclaimer-section {
    padding: 40px 60px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-asymmetric {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    background: #1a1a1a;
    color: #ffffff;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

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

.footer-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.footer-block a {
    display: block;
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        padding: 60px 30px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .nav-items {
        flex-direction: column;
        gap: 15px;
    }

    .footer-asymmetric {
        flex-direction: column;
        padding: 40px 30px;
    }
}