.guarantee-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2f55d4;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .bank-col {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .bank-col {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .bank-col {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2f55d4, #5a7bf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}