/* ========== Стили для страницы доставки ========== */

/* Блок "Доставка и оплата" */
.delivery-info {
    padding: 60px 0;
    background: #fff;
}
.delivery-info .title {
    margin-bottom: 30px;
}
.delivery-info__text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.delivery-info__text p {
    margin-bottom: 20px;
}
.delivery-info__text p:last-child {
    margin-bottom: 0;
}

/* Блок "Как заказать диплом?" (переиспользуем стили из style.css) */
.steps {
    background: #f6f1f1;
    padding: 60px 0;
}
.steps__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.steps__item {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.steps__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(255, 106, 0, 0.15);
}
.steps__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF8C00, #FF6A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}
.steps__text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* Блок "7 главных признаков" */
.features {
    padding: 60px 0;
    background: #fff;
}
.features .title {
    margin-bottom: 40px;
}
.features__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    list-style: none;
    padding: 0;
}
.features__item {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.features__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.features__item-title {
    font-weight: 700;
    font-size: 18px;
    color: #123e93;
    margin-bottom: 15px;
    border-bottom: 2px solid #FF6A00;
    padding-bottom: 8px;
}
.features__item-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Блок цен (переиспользуем стили из style.css) */
.pricing {
    padding: 70px 0;
    background: #f9f9f9;
}
.pricing__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
.pricing__card {
    width: 200px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}
.pricing__card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}
.pricing__image {
    width: 120px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 15px;
}
.pricing__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.pricing__price {
    font-size: 20px;
    font-weight: 700;
    color: #FF6A00;
    margin-bottom: 15px;
}
.pricing__btn {
    background: linear-gradient(45deg, #FF8C00, #FF6A00);
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.pricing__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,106,0,0.4);
}
.btn--view-all {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: transparent;
    color: #FF6A00;
    border: 2px solid #FF6A00;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}
.btn--view-all:hover {
    background: #FF6A00;
    color: #fff;
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 992px) {
    .features__list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .steps__grid {
        grid-template-columns: 1fr;
    }
    .pricing__grid {
        grid-template-columns: 1fr;
    }
    .delivery-info__text {
        padding: 25px;
        font-size: 16px;
    }
    .features__item {
        padding: 20px;
    }
}