    /* --- ОПРЕДЕЛЕНИЕ ПЕРЕМЕННЫХ --- */
:root {
    /* Цвет фона карточки (обновлено: #FCFBFF) */
    --bg-feature-card: #FCFBFF;
    /* Цвет текста описания */
    --text-feature-body: #0A1F3E;
    /* Цвет иконок */
    --icon-color: #264E80;
}

/* --- Секция с картками (Features Section) --- */
.features-section { /* Объединенный класс */
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: space-between;
}

/* --- Картка --- */
.feature-card.custom-card {
    background-color: var(--bg-feature-card);
    border-radius: 12px;
    padding: 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    flex: 1;
    min-width: 280px;
    max-width: 360px;

    min-height: auto;
}

/* --- Блок для іконки --- */
.card-icon {
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Типографіка --- */

/* Заголовок H4 */
.feature-card.custom-card h4 {
    font-weight: 600;
    /* Используем переменную из base_color.css (#02091c) */
    color: var(--text-dark-blue);

    margin-bottom: 8px;
    font-size: 24px;
    line-height: 38px;
}

/* Текст P */
.feature-card.custom-card p {
    font-weight: 400;
    /* Используем новую переменную (#0A1F3E) */
    color: var(--text-feature-body);

    font-size: 16px;
    line-height: 19px;
    padding-top: 0;
}



/* --- АДАПТИВ (Mobile / 390px) --- */
@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .feature-card.custom-card {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    .feature-card.custom-card h4 {
        font-size: 20px;
        line-height: 24px;
    }
}
