/* Component: Features List */
.features-list {
    display: block;
    width: 100%;
    padding: 20px 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 20px;
    margin-bottom: 12px;
    border: none;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease
}

.feature-item:last-child {
    margin-bottom: 0
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    margin-bottom: 0 !important;
    object-fit: contain;
}

.feature-content {
    flex: 1
}

.feature-title {
    color: #003D6B;
    font-size: 16px !important;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width:768px) {
    .feature-item {
        padding: 15px 20px;
        gap: 20px;
        border-radius: 12px
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        padding: 10px
    }

    .feature-title {
        font-size: 13px !important;
    }
}