/* Дополнительные стили для страницы услуг */
.advantages-list {
    margin: 20px 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.advantage-item i {
    color: #d4af37;
    font-size: 1.1rem;
}

.service-price-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.service-content h4 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-price {
    color: #d4af37;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

/* Адаптивность */
@media (max-width: 768px) {
    .service-content ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .service-price {
        text-align: left;
    }
    
    .advantage-item {
        font-size: 0.9rem;
    }
}