/* Стили для страницы доставки */

.delivery-content {
    margin-top: 40px;
}

.delivery-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.delivery-section-title:first-child {
    margin-top: 0;
}

.delivery-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.delivery-text p {
    margin-bottom: 16px;
    color: #333;
}

.delivery-text p:last-child {
    margin-bottom: 0;
}

.delivery-text ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.delivery-text li {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.6;
}

.delivery-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 24px;
    margin-bottom: 16px;
}

.delivery-additional-content {
    margin-top: 32px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .delivery-section-title {
        font-size: 20px;
        margin-top: 24px;
    }
    
    .delivery-text {
        font-size: 14px;
    }
    
    .delivery-text h3 {
        font-size: 18px;
    }
}


