/* ========== Стили для страницы гарантий ========== */

/* Блок "Гарантия контроля качества" */
.guarantee-info {
    padding: 60px 0;
    background: #fff;
}
.guarantee-info .title {
    margin-bottom: 30px;
}
.guarantee-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);
}

/* Блок "7 главных признаков" (детальный) */
.features-detailed {
    padding: 60px 0;
    background: #f9f9f9;
}
.features-detailed .title {
    margin-bottom: 40px;
}
.features-detailed__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    list-style: none;
    padding: 0;
}
.features-detailed__item {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.features-detailed__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.features-detailed__item-title {
    font-weight: 700;
    font-size: 18px;
    color: #123e93;
    margin-bottom: 15px;
    border-bottom: 2px solid #FF6A00;
    padding-bottom: 8px;
}
.features-detailed__item-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Блок "Важные факторы" */
.factors {
    padding: 60px 0;
    background: #fff;
}
.factors .title {
    margin-bottom: 40px;
}
.factors__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.factors__item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.factors__item--reverse {
    flex-direction: row-reverse;
}
.factors__img {
    flex: 0 0 400px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.factors__content {
    flex: 1;
}
.factors__title {
    font-weight: 700;
    font-size: 24px;
    color: #123e93;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF6A00;
    padding-bottom: 10px;
}
.factors__text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Блок "Диплом с занесением в архив вуза" (используем готовые стили из style.css) */
.archive-info {
    padding: 60px 0;
    background: #f9f9f9;
}
.archive-info__text {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Блок цен и преимуществ (стили уже есть в style.css) */
.pricing {
    padding: 70px 0;
}
.advantages {
    background: #f6f1f1;
    padding: 60px 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .factors__item,
    .factors__item--reverse {
        flex-direction: column;
        text-align: center;
    }
    .factors__img {
        flex: 0 0 auto;
        max-width: 400px;
        width: 100%;
    }
    .features-detailed__list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .guarantee-info__text {
        padding: 25px;
        font-size: 16px;
    }
    .factors__title {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .factors__item {
        padding: 20px;
    }
    .factors__img {
        max-width: 100%;
    }
}