/* Страница услуги */
.service-hero {
    background: linear-gradient(135deg, #1e3a5c 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
}

.service-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero__badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero__price {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #4CAF50;
}

.service-hero__description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Контент услуги */
.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.service-content__body {
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-content__body h2,
.service-content__body h3,
.service-content__body h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-content__body p {
    margin-bottom: 20px;
}

/* Особенности */
.service-features {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-features h3 {
    margin-bottom: 20px;
    color: #333;
}

.service-features__list {
    list-style: none;
    padding: 0;
}

.service-features__item {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.service-features__item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Боковая панель */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-advantages {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-advantages h4 {
    margin-bottom: 20px;
    color: #333;
}

.service-advantages__list {
    list-style: none;
    padding: 0;
}

.service-advantages__item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.service-advantages__item:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.service-sidebar__action {
    text-align: center;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .service-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-hero__title {
        font-size: 2.2rem;
    }

    .service-hero {
        padding: 60px 0;
    }
}