﻿
/* ===== Section ===== */
.useful-section {
    background: #F3F6FD;
}

/* ===== Common Card ===== */
.info-support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 40px 24px;
    border: 1.5px solid #1e3a8a;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== Icon ===== */
.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon img {
        width: 100%;
        height: auto;
    }

/* ===== Title ===== */
.info-support-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 14px;
}

/* ===== Information List ===== */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .info-list li {
        position: relative;
        padding-left: 18px;
        font-size: 14px;
        color: #1e3a8a;
        margin-bottom: 8px;
    }

        .info-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 18px;
            color: inherit;
        }

/* ===== Hover ===== */
.info-support-card:hover {
    background: #1e3a8a;
    text-decoration: none;
}

    .info-support-card:hover h4,
    .info-support-card:hover .info-list li,
    .info-support-card:hover .info-list li::before {
        color: #ffffff;
    }

.center-card {
    justify-content: center;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
    .info-support-card {
        margin-bottom: 24px;
        padding: 32px 20px;
    }

        .info-support-card h4 {
            font-size: 18px;
        }
}
