@charset 'UTF-8';

*button:focus {
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

.features-section {
    padding: 20px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF3366, #8B5CF6, #0066FF);
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0066FF, #8B5CF6, #FF3366);

}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card .img-box {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .img-box i {
    font-size: 32px;
    color: #182E6C;
}

.features-section .row > div:nth-child(2) .feature-card .img-box i,
.features-section .row > div:nth-child(4) .feature-card .img-box i {
    color: #e5e5ff;
}


.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #5f51a8;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}